From c758f49daaf40d1ede31b309c34dedfb7c1651d7 Mon Sep 17 00:00:00 2001 From: Bauke Date: Fri, 15 Jun 2018 14:41:58 +0200 Subject: [PATCH] Renamed styles folder to sass --- generate.js | 2 +- package.json | 8 +- .../tildes-compact/_topic-listings.sass | 58 +++++----- .../tildes-compact/tildes-compact.js | 36 +++--- .../tildes-compact/tildes-compact.sass | 4 +- {styles => sass}/tildes-dracula/_blog.sass | 8 +- {styles => sass}/tildes-dracula/_buttons.sass | 70 ++++++------ {styles => sass}/tildes-dracula/_colors.sass | 26 ++--- .../tildes-dracula/_comment-tags.sass | 42 +++---- .../tildes-dracula/_comments.sass | 70 ++++++------ {styles => sass}/tildes-dracula/_docs.sass | 32 +++--- .../tildes-dracula/_html-tags.sass | 104 +++++++++--------- .../tildes-dracula/_listing-options.sass | 52 ++++----- .../tildes-dracula/_messages.sass | 34 +++--- {styles => sass}/tildes-dracula/_sidebar.sass | 10 +- .../tildes-dracula/_site-header.sass | 6 +- .../tildes-dracula/_tildes-extended.sass | 66 +++++------ .../tildes-dracula/_topic-full.sass | 32 +++--- .../tildes-dracula/_topic-listings.sass | 76 ++++++------- .../tildes-dracula/tildes-dracula.js | 36 +++--- .../tildes-dracula/tildes-dracula.sass | 30 ++--- 21 files changed, 401 insertions(+), 401 deletions(-) rename {styles => sass}/tildes-compact/_topic-listings.sass (95%) mode change 100755 => 100644 rename {styles => sass}/tildes-compact/tildes-compact.js (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-compact/tildes-compact.sass (97%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_blog.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_buttons.sass (95%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_colors.sass (95%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_comment-tags.sass (95%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_comments.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_docs.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_html-tags.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_listing-options.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_messages.sass (95%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_sidebar.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_site-header.sass (99%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_tildes-extended.sass (95%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_topic-full.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/_topic-listings.sass (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/tildes-dracula.js (94%) mode change 100755 => 100644 rename {styles => sass}/tildes-dracula/tildes-dracula.sass (96%) mode change 100755 => 100644 diff --git a/generate.js b/generate.js index 7141b06..5acdfc6 100755 --- a/generate.js +++ b/generate.js @@ -7,7 +7,7 @@ const path = require('path') const userCss = require('usercss-creator') // Define constants -const stylesDirectory = path.join(__dirname, 'styles') +const stylesDirectory = path.join(__dirname, 'sass') const cssDirectory = path.join(__dirname, 'css') // Walk recursively through styles directory diff --git a/package.json b/package.json index e5c64e4..b618063 100755 --- a/package.json +++ b/package.json @@ -7,14 +7,14 @@ }, "license": "MIT", "scripts": { - "watch": "node-sass -w styles -o temp", + "watch": "node-sass -w sass -o temp", "release": "yarn lint && yarn build:prod && yarn generate", "generate": "node generate.js", - "build:dev": "node-sass styles -o temp", - "build:prod": "node-sass styles -o css", + "build:dev": "node-sass sass -o temp", + "build:prod": "node-sass sass -o css -q", "lint": "yarn lint:js && yarn lint:css", "lint:js": "eslint . --color", - "lint:css": "stylelint \"styles/**/*.sass\" --color" + "lint:css": "stylelint \"sass/**/*.sass\" --color" }, "dependencies": { "klaw-sync": "^4.0.0", diff --git a/styles/tildes-compact/_topic-listings.sass b/sass/tildes-compact/_topic-listings.sass old mode 100755 new mode 100644 similarity index 95% rename from styles/tildes-compact/_topic-listings.sass rename to sass/tildes-compact/_topic-listings.sass index 44e56a9..c16105b --- a/styles/tildes-compact/_topic-listings.sass +++ b/sass/tildes-compact/_topic-listings.sass @@ -1,29 +1,29 @@ -.topic-listing, -.post-listing - .topic-text-excerpt - display: none !important - - .topic-metadata - display: inline-flex !important - height: 1.3em !important - max-width: 200px !important - overflow: hidden !important - white-space: nowrap !important - - .topic-tags - li - display: none !important - - &:nth-child(-n+3) - display: inherit !important - - .topic-info - width: 500px !important - - .user-label - display: none !important - -.post-listing - .post-buttons, - .comment-votes - display: none !important +.topic-listing, +.post-listing + .topic-text-excerpt + display: none !important + + .topic-metadata + display: inline-flex !important + height: 1.3em !important + max-width: 200px !important + overflow: hidden !important + white-space: nowrap !important + + .topic-tags + li + display: none !important + + &:nth-child(-n+3) + display: inherit !important + + .topic-info + width: 500px !important + + .user-label + display: none !important + +.post-listing + .post-buttons, + .comment-votes + display: none !important diff --git a/styles/tildes-compact/tildes-compact.js b/sass/tildes-compact/tildes-compact.js old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-compact/tildes-compact.js rename to sass/tildes-compact/tildes-compact.js index e7392b6..3bfa09f --- a/styles/tildes-compact/tildes-compact.js +++ b/sass/tildes-compact/tildes-compact.js @@ -1,18 +1,18 @@ -// Descriptor for Tildes Compact - -const entry = 'tildes-compact.css' -const folder = 'tildes-compact' - -const options = { - name: 'Tildes Compact', - namespace: 'tildes.net', - version: '1.0.0', - author: 'Bauke', - description: 'Compact theme for Tildes.net', -} - -module.exports = { - entry: entry, - folder: folder, - options: options -} +// Descriptor for Tildes Compact + +const entry = 'tildes-compact.css' +const folder = 'tildes-compact' + +const options = { + name: 'Tildes Compact', + namespace: 'tildes.net', + version: '1.0.0', + author: 'Bauke', + description: 'Compact theme for Tildes.net', +} + +module.exports = { + entry: entry, + folder: folder, + options: options +} diff --git a/styles/tildes-compact/tildes-compact.sass b/sass/tildes-compact/tildes-compact.sass old mode 100755 new mode 100644 similarity index 97% rename from styles/tildes-compact/tildes-compact.sass rename to sass/tildes-compact/tildes-compact.sass index 46353b4..262b4f0 --- a/styles/tildes-compact/tildes-compact.sass +++ b/sass/tildes-compact/tildes-compact.sass @@ -1,2 +1,2 @@ -@-moz-document domain('tildes.net') - @import '_topic-listings.sass' +@-moz-document domain('tildes.net') + @import '_topic-listings.sass' diff --git a/styles/tildes-dracula/_blog.sass b/sass/tildes-dracula/_blog.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_blog.sass rename to sass/tildes-dracula/_blog.sass index 931273a..15c9e9c --- a/styles/tildes-dracula/_blog.sass +++ b/sass/tildes-dracula/_blog.sass @@ -1,4 +1,4 @@ -@import '_colors.sass' - -.date-info - color: $foreground !important +@import '_colors.sass' + +.date-info + color: $foreground !important diff --git a/styles/tildes-dracula/_buttons.sass b/sass/tildes-dracula/_buttons.sass old mode 100755 new mode 100644 similarity index 95% rename from styles/tildes-dracula/_buttons.sass rename to sass/tildes-dracula/_buttons.sass index 8a2befd..4f62718 --- a/styles/tildes-dracula/_buttons.sass +++ b/sass/tildes-dracula/_buttons.sass @@ -1,35 +1,35 @@ -@import '_colors.sass' - -.btn - border-color: $cyan !important - color: $cyan !important - - &:hover - border-color: $purple !important - background: none !important - color: $purple !important - -.btn-primary - border-color: $cyan !important - background: $cyan !important - color: $comment !important - - &:hover - border-color: $comment !important - background: $comment !important - color: $foreground !important - -.btn-used - border-color: $pink !important - color: $pink !important - - &:hover - border-color: $pink !important - background: $pink !important - color: $foreground !important - -.btn-link - border-color: transparent !important - - &:hover - border-color: transparent !important +@import '_colors.sass' + +.btn + border-color: $cyan !important + color: $cyan !important + + &:hover + border-color: $purple !important + background: none !important + color: $purple !important + +.btn-primary + border-color: $cyan !important + background: $cyan !important + color: $comment !important + + &:hover + border-color: $comment !important + background: $comment !important + color: $foreground !important + +.btn-used + border-color: $pink !important + color: $pink !important + + &:hover + border-color: $pink !important + background: $pink !important + color: $foreground !important + +.btn-link + border-color: transparent !important + + &:hover + border-color: transparent !important diff --git a/styles/tildes-dracula/_colors.sass b/sass/tildes-dracula/_colors.sass old mode 100755 new mode 100644 similarity index 95% rename from styles/tildes-dracula/_colors.sass rename to sass/tildes-dracula/_colors.sass index 81f111d..2709f16 --- a/styles/tildes-dracula/_colors.sass +++ b/sass/tildes-dracula/_colors.sass @@ -1,13 +1,13 @@ -$foreground: #f8f8f2 -$background: #282a36 -$selection: #44475a -$current-line: #44475a -$comment: #6272a4 - -$red: #ff5555 -$orange: #ffb86c -$yellow: #f1fa8c -$green: #50fa7b -$cyan: #8be9fd -$purple: #bd93f9 -$pink: #ff79c6 +$foreground: #f8f8f2 +$background: #282a36 +$selection: #44475a +$current-line: #44475a +$comment: #6272a4 + +$red: #ff5555 +$orange: #ffb86c +$yellow: #f1fa8c +$green: #50fa7b +$cyan: #8be9fd +$purple: #bd93f9 +$pink: #ff79c6 diff --git a/styles/tildes-dracula/_comment-tags.sass b/sass/tildes-dracula/_comment-tags.sass old mode 100755 new mode 100644 similarity index 95% rename from styles/tildes-dracula/_comment-tags.sass rename to sass/tildes-dracula/_comment-tags.sass index 170bea2..1d6bcec --- a/styles/tildes-dracula/_comment-tags.sass +++ b/sass/tildes-dracula/_comment-tags.sass @@ -1,21 +1,21 @@ -@import '_colors.sass' - -.label-comment-tag-offtopic - border-color: $cyan !important - color: $cyan !important - -.label-comment-tag-joke - border-color: $green !important - color: $green !important - -.label-comment-tag-flame - border-color: $red !important - color: $red !important - -.label-comment-tag-troll - border-color: $orange !important - color: $orange !important - -.label-comment-tag-noise - border-color: $yellow !important - color: $yellow !important +@import '_colors.sass' + +.label-comment-tag-offtopic + border-color: $cyan !important + color: $cyan !important + +.label-comment-tag-joke + border-color: $green !important + color: $green !important + +.label-comment-tag-flame + border-color: $red !important + color: $red !important + +.label-comment-tag-troll + border-color: $orange !important + color: $orange !important + +.label-comment-tag-noise + border-color: $yellow !important + color: $yellow !important diff --git a/styles/tildes-dracula/_comments.sass b/sass/tildes-dracula/_comments.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_comments.sass rename to sass/tildes-dracula/_comments.sass index 88c1ef9..012c073 --- a/styles/tildes-dracula/_comments.sass +++ b/sass/tildes-dracula/_comments.sass @@ -1,35 +1,35 @@ -@import '_colors.sass' - -.comment - border-color: $background !important - - header - background-color: $background !important - color: $foreground !important - - a - color: $cyan !important - - a.link-user - color: $green !important - - a.link-user:visited - color: $pink !important - - .comment-user-info - color: $purple !important - -.is-comment-mine - > .comment-itself - border-color: $comment !important - -.is-comment-by-op - > .comment-itself - border-color: $purple !important - -.is-comment-new - .comment-itself - border-color: $yellow !important - - .comment-text - color: $foreground !important +@import '_colors.sass' + +.comment + border-color: $background !important + + header + background-color: $background !important + color: $foreground !important + + a + color: $cyan !important + + a.link-user + color: $green !important + + a.link-user:visited + color: $pink !important + + .comment-user-info + color: $purple !important + +.is-comment-mine + > .comment-itself + border-color: $comment !important + +.is-comment-by-op + > .comment-itself + border-color: $purple !important + +.is-comment-new + .comment-itself + border-color: $yellow !important + + .comment-text + color: $foreground !important diff --git a/styles/tildes-dracula/_docs.sass b/sass/tildes-dracula/_docs.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_docs.sass rename to sass/tildes-dracula/_docs.sass index 2dce818..cf8feb5 --- a/styles/tildes-dracula/_docs.sass +++ b/sass/tildes-dracula/_docs.sass @@ -1,16 +1,16 @@ -@import '_colors.sass' - -.conspicuous - color: $red !important - -.toc - background-color: $background !important - -.highlight - background-color: $selection !important - - >pre - margin-left: 0 !important - -#page-list - background-color: $selection !important +@import '_colors.sass' + +.conspicuous + color: $red !important + +.toc + background-color: $background !important + +.highlight + background-color: $selection !important + + >pre + margin-left: 0 !important + +#page-list + background-color: $selection !important diff --git a/styles/tildes-dracula/_html-tags.sass b/sass/tildes-dracula/_html-tags.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_html-tags.sass rename to sass/tildes-dracula/_html-tags.sass index 025075f..8267d28 --- a/styles/tildes-dracula/_html-tags.sass +++ b/sass/tildes-dracula/_html-tags.sass @@ -1,52 +1,52 @@ -@import '_colors.sass' - -body - color: $foreground !important - background-color: $background !important - -a - color: $cyan !important - -header a - color: $foreground !important - -main - font-family: sans-serif - -main, -aside - background-color: $selection !important - -blockquote - border-color: $foreground !important - background-color: $background !important - -textarea - border-color: $comment !important - background-color: $background !important - color: $foreground !important - -tr - background-color: $background !important - -td - border-color: $selection !important - border-bottom-width: 0.2rem !important - -pre, -code - border: none !important - background-color: $background !important - color: $foreground !important - -pre - padding: 5px 10px !important - -code - padding: 0 !important - -section - border-color: $background !important - -footer - background-color: $background !important +@import '_colors.sass' + +body + color: $foreground !important + background-color: $background !important + +a + color: $cyan !important + +header a + color: $foreground !important + +main + font-family: sans-serif + +main, +aside + background-color: $selection !important + +blockquote + border-color: $foreground !important + background-color: $background !important + +textarea + border-color: $comment !important + background-color: $background !important + color: $foreground !important + +tr + background-color: $background !important + +td + border-color: $selection !important + border-bottom-width: 0.2rem !important + +pre, +code + border: none !important + background-color: $background !important + color: $foreground !important + +pre + padding: 5px 10px !important + +code + padding: 0 !important + +section + border-color: $background !important + +footer + background-color: $background !important diff --git a/styles/tildes-dracula/_listing-options.sass b/sass/tildes-dracula/_listing-options.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_listing-options.sass rename to sass/tildes-dracula/_listing-options.sass index 215d5f3..88c4b5f --- a/styles/tildes-dracula/_listing-options.sass +++ b/sass/tildes-dracula/_listing-options.sass @@ -1,26 +1,26 @@ -@import '_colors.sass' - -.tab - border-color: $comment !important - - .tab-item - a - color: $foreground !important - - a:hover - color: $cyan !important - - .tab-item.active - a - color: $cyan !important - border-bottom-color: $cyan !important - - .tab-listing-order - border-color: $comment !important - -.form-select - border-color: $comment !important - - &:not([multiple]) - &:not([size]) - background-color: $selection !important +@import '_colors.sass' + +.tab + border-color: $comment !important + + .tab-item + a + color: $foreground !important + + a:hover + color: $cyan !important + + .tab-item.active + a + color: $cyan !important + border-bottom-color: $cyan !important + + .tab-listing-order + border-color: $comment !important + +.form-select + border-color: $comment !important + + &:not([multiple]) + &:not([size]) + background-color: $selection !important diff --git a/styles/tildes-dracula/_messages.sass b/sass/tildes-dracula/_messages.sass old mode 100755 new mode 100644 similarity index 95% rename from styles/tildes-dracula/_messages.sass rename to sass/tildes-dracula/_messages.sass index 2d432dc..7177927 --- a/styles/tildes-dracula/_messages.sass +++ b/sass/tildes-dracula/_messages.sass @@ -1,17 +1,17 @@ -@import '_colors.sass' - -.message - border-top: none !important - border-right: none !important - border-bottom: none !important - border-color: $background !important - - header - background-color: $background !important - - .message-text - color: $foreground !important - -.is-message-mine - border-width: 1px !important - margin-left: 0 !important +@import '_colors.sass' + +.message + border-top: none !important + border-right: none !important + border-bottom: none !important + border-color: $background !important + + header + background-color: $background !important + + .message-text + color: $foreground !important + +.is-message-mine + border-width: 1px !important + margin-left: 0 !important diff --git a/styles/tildes-dracula/_sidebar.sass b/sass/tildes-dracula/_sidebar.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_sidebar.sass rename to sass/tildes-dracula/_sidebar.sass index f3a326a..5d33a1b --- a/styles/tildes-dracula/_sidebar.sass +++ b/sass/tildes-dracula/_sidebar.sass @@ -1,5 +1,5 @@ -@import '_colors.sass' - -aside#sidebar - .group-subscription-count - text-align: center +@import '_colors.sass' + +aside#sidebar + .group-subscription-count + text-align: center diff --git a/styles/tildes-dracula/_site-header.sass b/sass/tildes-dracula/_site-header.sass old mode 100755 new mode 100644 similarity index 99% rename from styles/tildes-dracula/_site-header.sass rename to sass/tildes-dracula/_site-header.sass index b1f601a..44749c6 --- a/styles/tildes-dracula/_site-header.sass +++ b/sass/tildes-dracula/_site-header.sass @@ -1,3 +1,3 @@ -body>header>a:nth-child(1) - background-size: 32px 32px !important - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAMAAADQmBKKAAAAHlBMVEUoKjZQ+nticqSL6f29k/nx+oz/VVX/ecb/uGz///+3yBn7AAAAaklEQVR42u3Oxw2AQAADsNDZf2IGyO8kioQ9gQMAAAAAcLelCAkJCQkJCQkJ/Tk0lZS5ZMhZhISEhISEhISEvhbaSoasJWUvKUJCQkJCQkJCQu+GnnSUFCEhISEhISEhoXdDAAAAAAA3uwDrCC2R1NNC7QAAAABJRU5ErkJggg==') !important +body>header>a:nth-child(1) + background-size: 32px 32px !important + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAMAAADQmBKKAAAAHlBMVEUoKjZQ+nticqSL6f29k/nx+oz/VVX/ecb/uGz///+3yBn7AAAAaklEQVR42u3Oxw2AQAADsNDZf2IGyO8kioQ9gQMAAAAAcLelCAkJCQkJCQkJ/Tk0lZS5ZMhZhISEhISEhISEvhbaSoasJWUvKUJCQkJCQkJCQu+GnnSUFCEhISEhISEhoXdDAAAAAAA3uwDrCC2R1NNC7QAAAABJRU5ErkJggg==') !important diff --git a/styles/tildes-dracula/_tildes-extended.sass b/sass/tildes-dracula/_tildes-extended.sass old mode 100755 new mode 100644 similarity index 95% rename from styles/tildes-dracula/_tildes-extended.sass rename to sass/tildes-dracula/_tildes-extended.sass index 876d5b6..307e06b --- a/styles/tildes-dracula/_tildes-extended.sass +++ b/sass/tildes-dracula/_tildes-extended.sass @@ -1,33 +1,33 @@ -@import '_colors.sass' - -.label-edit-box - background-color: $background !important - color: $foreground !important - -.user-label - border-radius: 0 !important - padding: 1px 3px !important - -.bg-red - background-color: $red !important - color: $foreground !important - -.bg-orangered - background-color: $orange !important - color: $background !important - -.bg-orange - background-color: $yellow !important - color: $background !important - -.bg-dodgerblue - background-color: $cyan !important - color: $background !important - -.bg-forestgreen - background-color: $green !important - color: $background !important - -.bg-slategray - background-color: $selection !important - color: $foreground !important +@import '_colors.sass' + +.label-edit-box + background-color: $background !important + color: $foreground !important + +.user-label + border-radius: 0 !important + padding: 1px 3px !important + +.bg-red + background-color: $red !important + color: $foreground !important + +.bg-orangered + background-color: $orange !important + color: $background !important + +.bg-orange + background-color: $yellow !important + color: $background !important + +.bg-dodgerblue + background-color: $cyan !important + color: $background !important + +.bg-forestgreen + background-color: $green !important + color: $background !important + +.bg-slategray + background-color: $selection !important + color: $foreground !important diff --git a/styles/tildes-dracula/_topic-full.sass b/sass/tildes-dracula/_topic-full.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_topic-full.sass rename to sass/tildes-dracula/_topic-full.sass index fdfdf15..68d88c8 --- a/styles/tildes-dracula/_topic-full.sass +++ b/sass/tildes-dracula/_topic-full.sass @@ -1,16 +1,16 @@ -@import '_colors.sass' - -.topic-full - .topic-full-byline - color: $foreground !important - - .link-user - color: $green !important - - .link-user:visited - color: $pink !important - -aside - .topic-tags - li - color: $foreground !important +@import '_colors.sass' + +.topic-full + .topic-full-byline + color: $foreground !important + + .link-user + color: $green !important + + .link-user:visited + color: $pink !important + +aside + .topic-tags + li + color: $foreground !important diff --git a/styles/tildes-dracula/_topic-listings.sass b/sass/tildes-dracula/_topic-listings.sass old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/_topic-listings.sass rename to sass/tildes-dracula/_topic-listings.sass index dd3cc10..07c37db --- a/styles/tildes-dracula/_topic-listings.sass +++ b/sass/tildes-dracula/_topic-listings.sass @@ -1,38 +1,38 @@ -@import '_colors.sass' - -.topic - .topic-content-metadata - color: $green !important - - .topic-text-excerpt - color: $comment !important - -.post-listing - .topic - background-color: $background !important - -.topic-listing - background-color: $selection !important - - > li - background-color: $background !important - -.is-topic-official - border-color: $orange !important - -.topic-title - a - color: $cyan !important - - a:visited - color: $pink !important - -.topic-info - .time-responsive - color: $green !important - -.topic-metadata .topic-tags li - color: $comment !important - -.topic-info-comments-new - color: $yellow !important +@import '_colors.sass' + +.topic + .topic-content-metadata + color: $green !important + + .topic-text-excerpt + color: $comment !important + +.post-listing + .topic + background-color: $background !important + +.topic-listing + background-color: $selection !important + + > li + background-color: $background !important + +.is-topic-official + border-color: $orange !important + +.topic-title + a + color: $cyan !important + + a:visited + color: $pink !important + +.topic-info + .time-responsive + color: $green !important + +.topic-metadata .topic-tags li + color: $comment !important + +.topic-info-comments-new + color: $yellow !important diff --git a/styles/tildes-dracula/tildes-dracula.js b/sass/tildes-dracula/tildes-dracula.js old mode 100755 new mode 100644 similarity index 94% rename from styles/tildes-dracula/tildes-dracula.js rename to sass/tildes-dracula/tildes-dracula.js index 93754c5..6010bbf --- a/styles/tildes-dracula/tildes-dracula.js +++ b/sass/tildes-dracula/tildes-dracula.js @@ -1,18 +1,18 @@ -// Descriptor for Tildes Dracula - -const entry = 'tildes-dracula.css' -const folder = 'tildes-dracula' - -const options = { - name: 'Tildes Dracula', - namespace: 'tildes.net', - version: '1.0.0', - author: 'Bauke', - description: 'Dracula theme for Tildes.net', -} - -module.exports = { - entry: entry, - folder: folder, - options: options -} +// Descriptor for Tildes Dracula + +const entry = 'tildes-dracula.css' +const folder = 'tildes-dracula' + +const options = { + name: 'Tildes Dracula', + namespace: 'tildes.net', + version: '1.0.0', + author: 'Bauke', + description: 'Dracula theme for Tildes.net', +} + +module.exports = { + entry: entry, + folder: folder, + options: options +} diff --git a/styles/tildes-dracula/tildes-dracula.sass b/sass/tildes-dracula/tildes-dracula.sass old mode 100755 new mode 100644 similarity index 96% rename from styles/tildes-dracula/tildes-dracula.sass rename to sass/tildes-dracula/tildes-dracula.sass index 36e7c71..0af6dae --- a/styles/tildes-dracula/tildes-dracula.sass +++ b/sass/tildes-dracula/tildes-dracula.sass @@ -1,15 +1,15 @@ -@-moz-document domain('tildes.net') - @import '_blog.sass' - @import '_buttons.sass' - @import '_colors.sass' - @import '_comment-tags.sass' - @import '_comments.sass' - @import '_docs.sass' - @import '_html-tags.sass' - @import '_listing-options.sass' - @import '_messages.sass' - @import '_sidebar.sass' - @import '_site-header.sass' - @import '_tildes-extended.sass' - @import '_topic-full.sass' - @import '_topic-listings.sass' +@-moz-document domain('tildes.net') + @import '_blog.sass' + @import '_buttons.sass' + @import '_colors.sass' + @import '_comment-tags.sass' + @import '_comments.sass' + @import '_docs.sass' + @import '_html-tags.sass' + @import '_listing-options.sass' + @import '_messages.sass' + @import '_sidebar.sass' + @import '_site-header.sass' + @import '_tildes-extended.sass' + @import '_topic-full.sass' + @import '_topic-listings.sass'