From 6c028cace9f4b7775309aca4d726fe2bc7bc2ba1 Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Mon, 28 Dec 2015 17:54:04 +0100 Subject: Cleanup --- common/gtk-3.0/3.16/sass/_applications.scss | 2 - common/gtk-3.0/3.16/sass/_colors-public.scss | 8 +- common/gtk-3.0/3.16/sass/_common.scss | 367 +++++++++------------ common/gtk-3.0/3.16/sass/_lightdm.scss | 20 +- common/gtk-3.0/3.16/sass/_transparent_widgets.scss | 2 +- common/gtk-3.0/3.16/sass/gtk-dark.scss | 5 - common/gtk-3.0/3.16/sass/gtk-darker.scss | 5 - common/gtk-3.0/3.16/sass/gtk-solid-dark.scss | 5 - common/gtk-3.0/3.16/sass/gtk-solid-darker.scss | 5 - common/gtk-3.0/3.16/sass/gtk-solid.scss | 5 - common/gtk-3.0/3.16/sass/gtk.scss | 5 - 11 files changed, 165 insertions(+), 264 deletions(-) (limited to 'common/gtk-3.0/3.16/sass') diff --git a/common/gtk-3.0/3.16/sass/_applications.scss b/common/gtk-3.0/3.16/sass/_applications.scss index 2b3ecd7..36dbbef 100644 --- a/common/gtk-3.0/3.16/sass/_applications.scss +++ b/common/gtk-3.0/3.16/sass/_applications.scss @@ -200,12 +200,10 @@ NemoWindow { } } -/* Only normal state is handle */ .open-document-selector-name-label { color: $fg_color; } -/* Only normal state is handle */ .open-document-selector-path-label { color: mix($fg_color, $base_color, 50%); font-size: smaller; diff --git a/common/gtk-3.0/3.16/sass/_colors-public.scss b/common/gtk-3.0/3.16/sass/_colors-public.scss index 4203b0c..8807853 100644 --- a/common/gtk-3.0/3.16/sass/_colors-public.scss +++ b/common/gtk-3.0/3.16/sass/_colors-public.scss @@ -1,5 +1,4 @@ //apps rely on some named colors to be exported -/* GTK NAMED COLORS */ // Sass thinks we're using the colors in the variables as strings and may shoot // warning, it's innocuous and can be defeated by using "" + $var @@ -30,6 +29,8 @@ @define-color success_color #{"" + $success_color}; @define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #{"" + $base_color}; + //WM $wm_highlight: lighten(opacify($header_bg, 1), 3%); $wm_bg_unfocused: opacify($header_bg_backdrop, 1); @@ -63,8 +64,3 @@ $wm_bg_unfocused: opacify($header_bg_backdrop, 1); @define-color wm_icon_hover_bg #{"" + $wm_icon_hover_bg}; @define-color wm_icon_active_bg #{"" + $wm_icon_active_bg}; - -//FIXME this is really an API - -@define-color content_view_bg #{"" + $base_color}; - diff --git a/common/gtk-3.0/3.16/sass/_common.scss b/common/gtk-3.0/3.16/sass/_common.scss index 059a9ae..fa89856 100644 --- a/common/gtk-3.0/3.16/sass/_common.scss +++ b/common/gtk-3.0/3.16/sass/_common.scss @@ -15,11 +15,6 @@ $darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); -GtkCheckButton-indicator-size: 16; -GtkCheckMenuItem-indicator-size: 16; - // The size for scrollbars. The slider is 2px smaller, but we keep it - // up so that the whole area is sensitive to button presses for the - // slider. The stepper button is larger in both directions, the slider - // only in the width - -GtkScrolledWindow-scrollbar-spacing: 0; -GtkScrolledWindow-scrollbars-within-bevel: 1; @@ -47,9 +42,6 @@ $darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); -GtkStatusbar-shadow-type: none; // We use the outline properties to signal the focus properties - // to the adwaita engine: using real CSS properties is faster, - // and we don't use any outlines for now. - outline-color: transparentize($fg_color, 0.7); outline-style: dashed; outline-offset: -3px; @@ -58,22 +50,14 @@ $darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); } -/*************** - * Base States * - ***************/ - +// +// Base States +// .background { color: $fg_color; background-color: if($transparency == 'true', transparentize($bg_color, 0.001), $bg_color); // without this headerbar transparency doesn't seem to work } -/* - These wildcard seems unavoidable, need to investigate. - Wildcards are bad and troublesome, use them with care, - or better, just don't. - Everytime a wildcard is used a kitten dies, painfully. -*/ - *:insensitive { -gtk-image-effect: dim; } @@ -181,10 +165,9 @@ GtkTextView { // This will get overridden by .view, needed by gedit line numbers box-shadow: none; } -/********************** - * Spinner Animations * - **********************/ - +// +// Spinner Animations +// @keyframes spin { to { -gtk-icon-transform: rotate(1turn); } } @@ -205,10 +188,9 @@ GtkTextView { // This will get overridden by .view, needed by gedit line numbers } } -/**************** - * Text Entries * - ****************/ - +// +// Text Entries +// .entry { border: 1px solid; padding: 5px 8px 6px; @@ -348,10 +330,9 @@ GtkTextView { // This will get overridden by .view, needed by gedit line numbers GtkSearchEntry.entry { border-radius: 20px; } -/*********** - * Buttons * - ***********/ - +// +// Buttons +// // stuff for .needs-attention $_dot_color: $selected_bg_color; @@ -372,7 +353,6 @@ $_dot_color: $selected_bg_color; } } - .button { $_button_transition: all 200ms $ease-out-quad; @@ -385,7 +365,7 @@ $_dot_color: $selected_bg_color; @include button(normal); - &.flat { + &.flat { @include button(undecorated); background-color: transparentize($button_bg, 1); border-color: transparentize($button_border, 1); @@ -751,10 +731,9 @@ $_linked_separator_color: if($variant=='light', transparentize($button_border, 0 &:checked { color: $fg_color; } } -/********* - * Links * - *********/ - +// +// Links +// *:link { color: $link_color; &:visited { @@ -782,10 +761,9 @@ $_linked_separator_color: if($variant=='light', transparentize($button_border, 0 } } -/***************** - * GtkSpinButton * - *****************/ - +// +// Spinbuttons +// .spinbutton { border-radius: 3px; @@ -796,8 +774,7 @@ $_linked_separator_color: if($variant=='light', transparentize($button_border, 0 color: mix($fg_color,$base_color,95%); border-radius: 0; box-shadow: none; - // padding-left: 6px; - // padding-right: 6px; + &:dir(rtl) { border-style: none solid none none; } &:first-child { color: red; } @@ -873,8 +850,6 @@ $_linked_separator_color: if($variant=='light', transparentize($button_border, 0 } } &.entry { - // we should remove the bottom edge hilight here, but seems - // like buttons are on top of it so it doesn't show up border-radius: 0; padding-left: 5px; padding-right: 5px; @@ -899,16 +874,18 @@ $_linked_separator_color: if($variant=='light', transparentize($button_border, 0 } } -/************** - * ComboBoxes * - **************/ +// +// Comboboxes +// GtkComboBox { - > .button { padding-top: 3px; padding-bottom: 4px; } // Otherwise combos - // are bigger then - // buttons -GtkComboBox-arrow-scaling: 0.5; -GtkComboBox-shadow-type: none; + > .button { // Otherwise combos + padding-top: 3px; // are bigger than + padding-bottom: 4px; // buttons + } + &:insensitive { color: $insensitive_fg_color; } @@ -974,9 +951,9 @@ GtkComboBox { .linked.vertical > GtkComboBoxText:only-child > .button, .linked.vertical > GtkComboBox:only-child > .button { @extend %linked_vertical:only-child; } -/************ - * Toolbars * - ************/ +// +// Toolbars +// .toolbar { -GtkWidget-window-dragging: true; padding: 4px; @@ -1026,10 +1003,9 @@ GtkComboBox { .action-bar { background-color: darken($bg_color, 3%) } -/*************** - * Header bars * - ***************/ - +// +// Headerbars +// .header-bar { padding: 7px 7px 6px 7px; @@ -1193,7 +1169,7 @@ GtkComboBox { } %header_widgets { - // Header-bar Entries + // Headerbar Entries .entry { @include entry(header-normal); @@ -1237,7 +1213,7 @@ GtkComboBox { } } - // Header-bar Buttons + // Headerbar Buttons .button { @include button(header-normal); @@ -1290,7 +1266,7 @@ GtkComboBox { } } - // Header-bar Suggested and Destructive Action buttons + // Headerbar Suggested and Destructive Action buttons @each $b_type, $b_color in (suggested-action, $suggested_color), (destructive-action, $destructive_color) { .button.#{$b_type} { @@ -1316,7 +1292,7 @@ GtkComboBox { } } - // Header-bar Spinbuttons + // Headerbar Spinbuttons & .spinbutton { &:focus .button { @@ -1334,7 +1310,7 @@ GtkComboBox { } } - // Header-bar ComboBoxes + // Headerbar ComboBoxes & GtkComboBox{ &:insensitive { color: transparentize($header_fg, 0.6); } @@ -1367,7 +1343,7 @@ GtkComboBox { } } - // Header-bar Switches + // Headerbar Switches GtkSwitch { &:backdrop { opacity: 0.75; } } @@ -1379,7 +1355,7 @@ GtkComboBox { &:backdrop { opacity: 0.75; } } - // Header-bar Scale + // Headerbar Scale .scale { &:backdrop { opacity: 0.75; } @@ -1413,9 +1389,9 @@ GtkComboBox { } } -/************ - * Pathbars * - ************/ +// +// Pathbars +// .path-bar .button { padding-left: 6px; padding-right: 6px; @@ -1431,9 +1407,9 @@ GtkComboBox { GtkLabel:only-child, GtkLabel { padding-right: 4px; padding-left: 4px; } } -/************** - * Tree Views * - **************/ +// +// Tree Views +// GtkTreeView.view { // treeview grid lines and expanders, unfortunatelly // the tree lines color can't be set -GtkTreeView-grid-line-width: 1; @@ -1559,9 +1535,9 @@ column-header.button.dnd { // for treeview-like derive widgets } } -/********* - * Menus * - *********/ +// +// Menus +// .menubar { -GtkWidget-window-dragging: true; padding: 0px; @@ -1639,10 +1615,9 @@ column-header.button.dnd { // for treeview-like derive widgets .menuitem .accelerator { color: gtkalpha(currentColor,0.55); } -/************ - * Popovers * - ************/ - +// +// Popovers +// .popover { padding: 2px; border: 1px solid darken($borders_color, 5%); @@ -1676,17 +1651,10 @@ column-header.button.dnd { // for treeview-like derive widgets &.bottom { -gtk-icon-source: -gtk-icontheme('selection-end-symbolic'); } } -/***************** - * Notebooks and * - * Tabs * - *****************/ - +// +// Notebooks and Tabs +// .notebook { - // Through me you go to the grief wracked city; - // Through me you go to everlasting pain; - // Through me you go a pass among lost souls. - // ... - // Abandon all hope — Ye Who Enter Here padding: 0; background-color: $base_color; -GtkNotebook-initial-gap: 4; @@ -1700,15 +1668,13 @@ column-header.button.dnd { // for treeview-like derive widgets &.frame { border: 1px solid $borders_color; - // FIXME doesn't work + &.top { border-top-width: 0; } &.bottom { border-bottom-width: 0; } &.right { border-right-width: 0; } &.left { border-left-width: 0; } } &.header { - // FIXME: double borders in some case, can't fix it w/o a class tho - // FIXME: doesn't work on dark var background-color: $bg_color; // this is the shading of the header behind the tabs @@ -1721,18 +1687,10 @@ column-header.button.dnd { // for treeview-like derive widgets } $_header_border: $borders_color; - &.top { - box-shadow: inset 0 -1px $_header_border; // border - } - &.bottom { - box-shadow: inset 0 1px $_header_border; - } - &.right { - box-shadow: inset 1px 0 $_header_border; - } - &.left { - box-shadow: inset -1px 0 $_header_border; - } + &.top { box-shadow: inset 0 -1px $_header_border; } + &.bottom { box-shadow: inset 0 1px $_header_border; } + &.right { box-shadow: inset 1px 0 $_header_border; } + &.left { box-shadow: inset -1px 0 $_header_border; } } tab { border-width: 0; @@ -1853,10 +1811,9 @@ column-header.button.dnd { // for treeview-like derive widgets } } -/************** - * Scrollbars * - **************/ - +// +// Scrollbars +// $_scrollbar_bg_color: darken($base_color, 1%); .scrollbar { @@ -1990,9 +1947,9 @@ $_scrollbar_bg_color: darken($base_color, 1%); } -/********** - * Switch * - **********/ +// +// Switches +// GtkSwitch { font: 1; -GtkSwitch-slider-width: 41; @@ -2034,13 +1991,9 @@ GtkSwitch { } } -/************************* - * Check and Radio items * - *************************/ - -// draw regular check and radio items using our PNG assets -// all assets are rendered from assets.svg. never add pngs directly - +// +// Check and Radio items * +// @each $w,$a in ('check', 'checkbox'), ('radio','radio') { @@ -2074,7 +2027,7 @@ GtkSwitch { } } -//selection-mode +// Selectionmode @each $s,$as in ('','-selectionmode'), (':checked', '-checked-selectionmode') { GtkIconView.view.check#{$s}, @@ -2097,9 +2050,9 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } } -/************ - * GtkScale * - ************/ +// +// GtkScale +// .scale { -GtkScale-slider-length: 15; -GtkRange-slider-width: 15; @@ -2206,15 +2159,13 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } } -/***************** - * Progress bars * - *****************/ - +// +// Progress bars +// GtkProgressBar { padding: 0; font-size: smaller; color: transparentize($fg_color, 0.3); - //@include _shadows(_button_shadow(normal)); &.osd { -GtkProgressBar-xspacing: 0; @@ -2253,24 +2204,22 @@ GtkProgressBar.trough { border-style: none; background-color: transparent; box-shadow: none; - //FIXME: there is a margin on top } .list-row:selected &, GtkInfoBar & { background-color: transparentize(black, 0.8); } } -/************* - * Level Bar * - *************/ - +// +// Level Bar +// GtkLevelBar { -GtkLevelBar-min-block-width: 34; -GtkLevelBar-min-block-height: 3; -} -GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; + &.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; + } } .level-bar { @@ -2306,9 +2255,9 @@ GtkLevelBar.vertical { } -/********** - * Frames * - **********/ +// +// Frames +// .frame { border: 1px solid $borders_color; &.flat { border-style: none; } @@ -2342,10 +2291,9 @@ GtkScrolledWindow { } } -/********* - * Lists * - *********/ - +// +// Lists +// .list, .list-row { background-color: $base_color; border-color: $borders_color; @@ -2390,10 +2338,9 @@ GtkScrolledWindow { &:hover { transition: none; } } -/********************* - * App Notifications * - *********************/ - +// +// App Notifications +// .app-notification, .app-notification.frame { padding: 10px; @@ -2419,10 +2366,9 @@ GtkScrolledWindow { } } -/************* - * Expanders * - *************/ - +// +// Expanders +// .expander { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } @@ -2430,9 +2376,9 @@ GtkScrolledWindow { &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); } } -/************ - * Calendar * - ***********/ +// +// Calendar +// GtkCalendar { color: $fg_color; border: 1px solid $borders_color; @@ -2465,9 +2411,9 @@ GtkCalendar { &.highlight { color: gtkalpha(currentColor,0.55); } } -/*********** - * Dialogs * - ***********/ +// +// Dialogs +// .message-dialog .dialog-action-area .button { padding: 8px; } @@ -2521,10 +2467,10 @@ GtkFileChooserDialog { } } -/*********** - * Sidebar * - ***********/ -.sidebar { +// +// Sidebar +// +.sidebar, .sidebar .view { border: none; background-color: $bg_color; @@ -2590,9 +2536,9 @@ GtkPaned.wide { // this is for the paned with wide separator &.vertical .pane-separator { border-style: solid none;} } -/************** - * GtkInfoBar * - **************/ +// +// GtkInfoBar +// GtkInfoBar { border-style: none; @@ -2648,9 +2594,9 @@ GtkInfoBar { } } -/************ - * Tooltips * - ************/ +// +// Tooltips +// .tooltip { &.background { // background-color needs to be set this way otherwise it gets drawn twice @@ -2673,9 +2619,9 @@ GtkInfoBar { color: inherit; // just to be sure } -/***************** - * Color Chooser * - *****************/ +// +// Color Chooser +// GtkColorSwatch { // This widget is made of two boxes one on top of the other, the lower box is GtkColorSwatch {} the other one @@ -2759,9 +2705,9 @@ GtkColorButton.button { GtkColorSwatch { border-radius: 0; } } -/******** - * Misc * - ********/ +// +// Misc * +// .scale-popup .button { // +/- buttons on GtkVolumeButton popup padding: 6px; &:hover { @@ -2771,23 +2717,49 @@ GtkColorButton.button { GtkVolumeButton.button { padding: 8px; } -/********************** - * Window Decorations * - *********************/ +// Decouple the font of context menus from their entry/textview +.touch-selection, +.context-menu { font: initial;} + +.monospace { font: Monospace; } + +// +// Overshoot +// +// This is used by GtkScrolledWindow, when content is touch-dragged past boundaries. +// This draws a box on top of the content, the size changes programmatically. +.overshoot { + &.top { @include overshoot(top); } + &.bottom { @include overshoot(bottom); } + &.left { @include overshoot(left); } + &.right { @include overshoot(right); } +} + +// +// Undershoot +// +// Overflow indication, works similarly to the overshoot, the size if fixed tho. +.undershoot { + &.top { @include undershoot(top); } + &.bottom { @include undershoot(bottom); } + &.left { @include undershoot(left); } + &.right { @include undershoot(right); } +} + +// +// Window Decorations +// .window-frame { border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - // lamefun trick to get rounded borders regardless of CSD use border-width: 0px; - // this needs to be transparent - // see bug #722563 $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.45)); box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), 0 8px 8px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - /* this is used for the resize cursor area */ + // this is used for the resize cursor area margin: 10px; &:backdrop { @@ -2880,45 +2852,10 @@ GtkVolumeButton.button { padding: 8px; } } } - -// catch all extend :) - +// catch all extend %selected_items { background-image: none; background-color: $selected_bg_color; color: $selected_fg_color; outline-color: transparentize($selected_fg_color, 0.7); } - -/* Decouple the font of context menus from their entry/textview */ -.touch-selection, -.context-menu { - font: initial; -} - -.monospace { - font: Monospace; -} - -// -// Overshoot -// -// This is used by GtkScrolledWindow, when content is touch-dragged past boundaries. -// This draws a box on top of the content, the size changes programmatically. -.overshoot { - &.top { @include overshoot(top); } - &.bottom { @include overshoot(bottom); } - &.left { @include overshoot(left); } - &.right { @include overshoot(right); } -} - -// -// Undershoot -// -// Overflow indication, works similarly to the overshoot, the size if fixed tho. -.undershoot { - &.top { @include undershoot(top); } - &.bottom { @include undershoot(bottom); } - &.left { @include undershoot(left); } - &.right { @include undershoot(right); } -} diff --git a/common/gtk-3.0/3.16/sass/_lightdm.scss b/common/gtk-3.0/3.16/sass/_lightdm.scss index 0879a5a..89cdfcd 100644 --- a/common/gtk-3.0/3.16/sass/_lightdm.scss +++ b/common/gtk-3.0/3.16/sass/_lightdm.scss @@ -1,11 +1,11 @@ -/* the panel widget at the top */ +// the panel widget at the top #panel_window { background-color: $panel_bg; color: $panel_fg; font: bold; box-shadow: inset 0 -1px darken($panel_bg, 7%); - /* the menubars/menus of the panel, i.e. indicators */ + // the menubars/menus of the panel, i.e. indicators .menubar, .menubar > .menuitem { background-color: transparent; @@ -21,7 +21,7 @@ .menubar .menu .menuitem { font: normal; } } -/* the login window */ +// the login window #login_window, #shutdown_dialog, #restart_dialog { @@ -31,7 +31,7 @@ color: $fg_color; } -/* the top half of the login-window, in GtkDialog terms, the content */ +// the top half of the login-window, in GtkDialog terms, the content #content_frame { padding-bottom: 14px; background-color: $bg_color; @@ -49,7 +49,7 @@ &:insensitive { @include button(insensitive); } } -/* the lower half of the login-window, in GtkDialog terms the buttonbox or action area */ +// the lower half of the login-window, in GtkDialog terms the buttonbox or action area #buttonbox_frame { padding-top: 20px; padding-bottom: 0px; @@ -78,16 +78,16 @@ .arrow {} } -/* the user's avatar box */ +// the user's avatar box #user_image { padding: 3px; border-radius: 2px; } -/* the border around the user's avatar box */ +// the border around the user's avatar box #user_image_border {} -/* the shutdown button */ +// the shutdown button #shutdown_button.button { @include button(suggested_destructive, $destructive_color); @@ -95,7 +95,7 @@ &:active, &:checked { @include button(suggested_destructive, darken($destructive_color, 10%)); } } -/* the restart button */ +// the restart button #restart_button.button { @include button(suggested_destructive, $suggested_color); @@ -103,7 +103,7 @@ &:active, &:checked { @include button(suggested_destructive, darken($suggested_color, 10%)); } } -/* the warning, in case a wrong password is entered or something else goes wrong according to PAM */ +// the warning, in case a wrong password is entered or something else goes wrong according to PAM #greeter_infobar { border-bottom-width: 0; font: bold; diff --git a/common/gtk-3.0/3.16/sass/_transparent_widgets.scss b/common/gtk-3.0/3.16/sass/_transparent_widgets.scss index e3e8909..7d1e0c9 100644 --- a/common/gtk-3.0/3.16/sass/_transparent_widgets.scss +++ b/common/gtk-3.0/3.16/sass/_transparent_widgets.scss @@ -58,7 +58,7 @@ NautilusWindow .pane-separator, NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator {background-color: $dark_sidebar_border} -/*Fix Nautilus transparency issues*/ +// Fix Nautilus transparency issues NautilusWindow NautilusWindowSlot { background-color: $base_color; } NautilusDesktopWindow NautilusWindowSlot { background-color: transparent; } diff --git a/common/gtk-3.0/3.16/sass/gtk-dark.scss b/common/gtk-3.0/3.16/sass/gtk-dark.scss index f47d7b5..529ee3d 100644 --- a/common/gtk-3.0/3.16/sass/gtk-dark.scss +++ b/common/gtk-3.0/3.16/sass/gtk-dark.scss @@ -1,8 +1,3 @@ -// General guidelines: -// - very unlikely you want to edit something else than _common.scss -// - keep the number of defined colors to a minimum, use the color blending functions if -// you need a subtle shade - $variant: 'dark'; $darker: 'false'; $transparency: 'true'; diff --git a/common/gtk-3.0/3.16/sass/gtk-darker.scss b/common/gtk-3.0/3.16/sass/gtk-darker.scss index 63166d2..34b8f81 100644 --- a/common/gtk-3.0/3.16/sass/gtk-darker.scss +++ b/common/gtk-3.0/3.16/sass/gtk-darker.scss @@ -1,8 +1,3 @@ -// General guidelines: -// - very unlikely you want to edit something else than _common.scss -// - keep the number of defined colors to a minimum, use the color blending functions if -// you need a subtle shade - $variant: 'light'; $darker: 'true'; $transparency: 'true'; diff --git a/common/gtk-3.0/3.16/sass/gtk-solid-dark.scss b/common/gtk-3.0/3.16/sass/gtk-solid-dark.scss index 157292d..959d8b1 100644 --- a/common/gtk-3.0/3.16/sass/gtk-solid-dark.scss +++ b/common/gtk-3.0/3.16/sass/gtk-solid-dark.scss @@ -1,8 +1,3 @@ -// General guidelines: -// - very unlikely you want to edit something else than _common.scss -// - keep the number of defined colors to a minimum, use the color blending functions if -// you need a subtle shade - $variant: 'dark'; $darker: 'false'; $transparency: 'false'; diff --git a/common/gtk-3.0/3.16/sass/gtk-solid-darker.scss b/common/gtk-3.0/3.16/sass/gtk-solid-darker.scss index 03ba34b..45b7dbe 100644 --- a/common/gtk-3.0/3.16/sass/gtk-solid-darker.scss +++ b/common/gtk-3.0/3.16/sass/gtk-solid-darker.scss @@ -1,8 +1,3 @@ -// General guidelines: -// - very unlikely you want to edit something else than _common.scss -// - keep the number of defined colors to a minimum, use the color blending functions if -// you need a subtle shade - $variant: 'light'; $darker: 'true'; $transparency: 'false'; diff --git a/common/gtk-3.0/3.16/sass/gtk-solid.scss b/common/gtk-3.0/3.16/sass/gtk-solid.scss index 347cf2c..28ff2b6 100644 --- a/common/gtk-3.0/3.16/sass/gtk-solid.scss +++ b/common/gtk-3.0/3.16/sass/gtk-solid.scss @@ -1,8 +1,3 @@ -// General guidelines: -// - very unlikely you want to edit something else than _common.scss -// - keep the number of defined colors to a minimum, use the color blending functions if -// you need a subtle shade - $variant: 'light'; $darker: 'false'; $transparency: 'false'; diff --git a/common/gtk-3.0/3.16/sass/gtk.scss b/common/gtk-3.0/3.16/sass/gtk.scss index c45d673..9bb0348 100644 --- a/common/gtk-3.0/3.16/sass/gtk.scss +++ b/common/gtk-3.0/3.16/sass/gtk.scss @@ -1,8 +1,3 @@ -// General guidelines: -// - very unlikely you want to edit something else than _common.scss -// - keep the number of defined colors to a minimum, use the color blending functions if -// you need a subtle shade - $variant: 'light'; $darker: 'false'; $transparency: 'true'; -- cgit v1.2.3