sass rewrite first commit

This commit is contained in:
Sam Hewitt 2016-04-14 21:54:38 -04:00
parent bdca59f262
commit e2c10d03d2
242 changed files with 27315 additions and 19927 deletions

4
.gitignore vendored
View File

@ -6,4 +6,6 @@ configure
install-sh
Makefile
Makefile.in
missing
missing
.sass-cache
.sass-cache/

2
Gemfile Normal file
View File

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem "sass", "~> 3.4.0"

26
Paper/gtk-3.0/README.md Normal file
View File

@ -0,0 +1,26 @@
Summary
-------
* Do not edit the CSS directly, edit the source SCSS files and process them with SASS (run
`./parse-sass.sh` when you have the required software installed, as described below)
* To be able to use the latest/adequate version of sass, install ruby, gem, sass & bundle.
## How to tweak the theme
Paper is a large and complex theme, to keep it maintainable it's written and processed in SASS.
_colors.scss - global color definitions. We keep the number of defined colors to a necessary minimum,
most colors are derived form a handful of basics. It covers both the light variant and
the dark variant.
_colors-public.scss - SCSS colors exported through gtk to allow for 3rd party apps color mixing.
_drawing.scss - drawing helper mixings/functions to allow easier definition of widget drawing under
specific context. This is why Paper isn't 15000 LOC.
_common.scss - actual definitions of style for each widget. This is where you are likely to add/remove
your changes.
apps/_*.scss - actual definitions of style for each widget. This is where you are likely to add/remove
your changes.

15
Paper/gtk-3.0/_apps.scss Normal file
View File

@ -0,0 +1,15 @@
/***********************
* App-Specific Styles *
***********************/
@import 'apps/archive-manager';
@import 'apps/birdie';
@import 'apps/gnome';
@import 'apps/pantheon';
@import 'apps/midori';
@import 'apps/pantheon';
@import 'apps/unity';
@import 'apps/vocal';

View File

@ -0,0 +1,94 @@
//apps rely on some named colors to be exported
/* GTK NAMED COLORS
----------------
use responsibly! */
// 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
/* widget text/foreground color */
@define-color theme_fg_color #{"" +$fg_color};
/* text color for entries, views and content in general */
@define-color theme_text_color #{"" +$text_color};
/* widget base background color */
@define-color theme_bg_color #{"" +$bg_color};
/* text widgets and the like base background color */
@define-color theme_base_color #{"" +$base_color};
/* base background color of selections */
@define-color theme_selected_bg_color #{"" +$selected_bg_color};
/* text/foreground color of selections */
@define-color theme_selected_fg_color #{"" +$selected_fg_color};
/* base background color of insensitive widgets */
@define-color insensitive_bg_color #{"" +$insensitive_bg_color};
/* text foreground color of insensitive widgets */
@define-color insensitive_fg_color #{"" +$insensitive_fg_color};
/* insensitive text widgets and the like base background color */
@define-color insensitive_base_color #{"" +$base_color};
/* widget text/foreground color on backdrop windows */
@define-color theme_unfocused_fg_color #{"" +$backdrop_fg_color};
/* text color for entries, views and content in general on backdrop windows */
@define-color theme_unfocused_text_color #{"" +$text_color};
/* widget base background color on backdrop windows */
@define-color theme_unfocused_bg_color #{"" +$backdrop_bg_color};
/* text widgets and the like base background color on backdrop windows */
@define-color theme_unfocused_base_color #{"" +$backdrop_base_color};
/* base background color of selections on backdrop windows */
@define-color theme_unfocused_selected_bg_color #{"" +$selected_bg_color};
/* text/foreground color of selections on backdrop windows */
@define-color theme_unfocused_selected_fg_color #{"" + $selected_fg_color};
/* widgets main borders color */
@define-color borders #{"" +$borders_color};
/* widgets main borders color on backdrop windows */
@define-color unfocused_borders #{"" +$backdrop_borders_color};
/* these are pretty self explicative */
@define-color warning_color #{"" +$warning_color};
@define-color error_color #{"" +$error_color};
@define-color success_color #{"" +$success_color};
//@define-color destructive_color #{$destructive_color}
//WM
$_wm_highlight: if($variant=='light', $top_highlight, // Sass gets mad if this is
transparentize(black,1)); // done directly in the
// color definition
/* these colors are exported for the window manager and shouldn't be used in applications,
read if you used those and something break with a version upgrade you're on your own... */
@define-color wm_title shade(#{$fg_color}, 1.8);
@define-color wm_unfocused_title #{$backdrop_fg_color};
@define-color wm_highlight #{"" + $_wm_highlight};
@define-color wm_borders_edge #{"" + $borders_edge};
@define-color wm_bg_a shade(#{$bg_color}, 1.2);
@define-color wm_bg_b #{$bg_color};
@define-color wm_shadow alpha(black, 0.35);
@define-color wm_border alpha(black, 0.18);
@define-color wm_button_hover_color_a shade(#{$bg_color}, 1.3);
@define-color wm_button_hover_color_b #{$bg_color};
@define-color wm_button_active_color_a shade(#{$bg_color}, 0.85);
@define-color wm_button_active_color_b shade(#{$bg_color}, 0.89);
@define-color wm_button_active_color_c shade(#{$bg_color}, 0.9);
//FIXME this is really an API
@define-color content_view_bg #{"" + $base_color};

View File

@ -0,0 +1,75 @@
// When color definition differs for dark and light variant
// it gets @if ed depending on $variant
$base_color: if($variant == 'light', #ffffff, #636E73);
$bg_color: if($variant == 'light', #f7f7f7, #4F585C);
$fg_color: if($variant == 'light', #666666, #A1A8AB);
$text_color: if($variant == 'light', $fg_color, $fg_color);
$headerbar_bg_color: if($variant == 'light', #636E73, #3B4245);
$headerbar_fg_color: if($variant == 'light', #ffffff, transparentize(#ffffff, 0.2));
$selection_mode_headerbar_bg_color: #347D9F;
$selected_fg_color: #ffffff;
$selected_bg_color: if($variant == 'light', #9fb0b9, darken(#9fb0b9,20%));
$selected_borders_color: if($variant== 'light', darken($selected_bg_color, 20%), darken($selected_bg_color, 30%));
$borders_color: if($variant == 'light', darken($bg_color,20%), darken($bg_color,12%));
$borders_edge: if($variant == 'light', transparentize(white, 0.8), transparentize(white, 0.9));
$link_color: #347D9F;
$link_visited_color:transparentize($link_color,0.5);
$top_highlight: $borders_edge;
$bottom_highlight: if($variant == 'light', transparentize(white, 0.2), transparentize(white, 0.9));
$dark_fill: mix($borders_color, $bg_color, 35%);
$menu_color: if($variant == 'light', $base_color, mix($bg_color, $base_color, 20%));
$popover_bg_color: $bg_color;
$popover_hover_color: lighten($bg_color, 5%);
$scrollbar_bg_color: if($variant == 'light', mix($bg_color, $fg_color, 80%), mix($base_color, $bg_color, 50%));
$scrollbar_slider_color: mix($fg_color, $bg_color, 60%);
$scrollbar_slider_hover_color: mix($fg_color, $bg_color, 80%);
$scrollbar_slider_active_color: if($variant=='light', darken($selected_bg_color, 10%), lighten($selected_bg_color, 10%));
$warning_color: #fec006;
$error_color: #f34235;
$info_color: #2095f2;
$success_color: if($variant == 'light', #dbdee0, darken(#dbdee0,10%));
$destructive_color: if($variant == 'light', #DC322F, darken(#DC322F,10%));
$osd_fg_color: #A1A8AB;
$osd_text_color: white;
$osd_bg_color: transparentize(#202526, 0.2);
$osd_insensitive_bg_color: transparentize(mix($osd_fg_color, opacify($osd_bg_color, 1), 10%), 0.5);
$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 50%);
$osd_borders_color: transparentize(black, 0.3);
$sidebar_bg_color: mix($bg_color, $base_color, 50%);
$base_hover_color: transparentize($fg_color, 0.95);
$tooltip_borders_color: transparentize(white, 0.9);
$shadow_color: transparentize(black, 0.9);
$drop_target_color: #4e9a06;
// Insensitive state colors
$insensitive_fg_color: mix($fg_color, $bg_color, 50%);
$insensitive_bg_color: mix($bg_color, $base_color, 60%);
$insensitive_borders_color: $borders_color;
// Backdrop state colors
$backdrop_base_color: if($variant == 'light', darken($base_color, 1%), lighten($base_color, 1%));
$backdrop_text_color: mix($text_color, $backdrop_base_color, 80%);
$backdrop_bg_color: $bg_color;
$backdrop_headerbar_bg_color: darken($headerbar_bg_color, 5%);
$backdrop_headerbar_fg_color: transparentize($headerbar_fg_color, 0.5);
$backdrop_fg_color: mix($fg_color, $backdrop_bg_color, 50%);
$backdrop_insensitive_color: if($variant == 'light', darken($backdrop_bg_color, 15%), lighten($backdrop_bg_color, 15%));
$backdrop_selected_fg_color: if($variant == 'light', transparentize($selected_fg_color, 0.5), transparentize($selected_fg_color, 0.5));
$backdrop_borders_color: mix($borders_color, $bg_color, 90%);
$backdrop_dark_fill: mix($backdrop_borders_color, $backdrop_bg_color, 35%);
$backdrop_sidebar_bg_color: mix($backdrop_bg_color, $backdrop_base_color, 50%);
$backdrop_scrollbar_bg_color: darken($backdrop_bg_color, 3%);
$backdrop_scrollbar_slider_color: mix($backdrop_fg_color, $backdrop_bg_color, 40%);
$backdrop_menu_color: if($variant == 'light', $backdrop_base_color, mix($backdrop_bg_color, $backdrop_base_color, 20%));

View File

@ -0,0 +1,92 @@
/**********
* Common *
**********/
@function gtkalpha($c,$a) {
@return unquote("alpha(#{$c},#{$a})");
}
$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
$asset_suffix: if($variant=='dark', '-dark', '');
$backdrop_transition: 200ms ease-out;
$button_transition: all 200ms $ease-out-quad;
* {
padding: 0;
-GtkToolButton-icon-spacing: 4;
-GtkTextView-error-underline-color: $error_color;
// 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;
-GtkToolItemGroup-expander-size: 11;
-GtkTreeView-expander-size: 11;
-GtkTreeView-horizontal-separator: 4;
-GtkWidget-text-handle-width: 20;
-GtkWidget-text-handle-height: 24;
-GtkDialog-button-spacing: 4;
-GtkDialog-action-area-border: 0;
-GtkPaned-handle-size: 1;
// 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;
// outline-width: 1px;
// -gtk-outline-radius: 2px;
-gtk-secondary-caret-color: $selected_bg_color
}
@import 'widgets/action-bars';
@import 'widgets/app-notifications';
@import 'widgets/base-states';
@import 'widgets/buttons';
@import 'widgets/calendar';
@import 'widgets/checks-radios';
@import 'widgets/color-chooser';
@import 'widgets/comboboxes';
@import 'widgets/dialogs';
@import 'widgets/entries';
@import 'widgets/expanders';
@import 'widgets/file-chooser';
@import 'widgets/floating-bar';
@import 'widgets/frames';
@import 'widgets/granite';
@import 'widgets/header-bars';
@import 'widgets/infobars';
@import 'widgets/level-bars';
@import 'widgets/links';
@import 'widgets/lists';
@import 'widgets/menus';
@import 'widgets/misc';
@import 'widgets/notebooks';
@import 'widgets/paned';
@import 'widgets/pathbars';
@import 'widgets/popovers';
@import 'widgets/print-dialog';
@import 'widgets/progress-bars';
@import 'widgets/scales';
@import 'widgets/scrollbars';
@import 'widgets/sidebar';
@import 'widgets/source-list';
@import 'widgets/spinbuttons';
@import 'widgets/spinner';
@import 'widgets/switches';
@import 'widgets/toolbars';
@import 'widgets/tooltips';
@import 'widgets/touch-copy-paste';
@import 'widgets/treeviews';
@import 'widgets/windows';

597
Paper/gtk-3.0/_drawing.scss Normal file
View File

@ -0,0 +1,597 @@
// Drawing mixins
// generic drawing of more complex things
@function _widget_edge($c:$borders_edge) {
// outer highlight "used" on most widgets
@if $c == none { @return none; }
@else { @return 0 1px $c; }
}
@mixin _shadows($shadow1, $shadow2:none, $shadow3:none, $shadow4:none) {
//
// Helper function to stack up to 4 box-shadows;
//
@if $shadow4!=none { box-shadow: $shadow1, $shadow2, $shadow3, $shadow4; }
@else if $shadow3!=none { box-shadow: $shadow1, $shadow2, $shadow3; }
@else if $shadow2!=none { box-shadow: $shadow1, $shadow2; }
@else { box-shadow: $shadow1; }
}
// entries
@function entry_focus_border($fc:$selected_bg_color) {
@if $variant == 'light' { @return $fc; }
@else { @return if($fc==$selected_bg_color, $selected_borders_color, darken($fc, 35%)); }
}
@function entry_focus_shadow($fc:$selected_bg_color) {
@return inset 0 1px 2px 0 transparentize(black, 0.95), inset 0 1px 1px 0 transparentize(black, 0.9);
}
@function entry_gradient($c) {
@if $variant=='light' { @return linear-gradient(to bottom, mix($borders_color, $c, 45%),
mix($borders_color, $c, 3%) 2px,
$c 90%); }
@else { @return linear-gradient(to bottom, mix($borders_color, $c, 95%),
mix($borders_color, $c, 40%) 3px,
$c 90%); }
}
@mixin entry($t, $fc:$selected_bg_color, $edge: none) {
//
// Entries drawing function
//
// $t: entry type
// $fc: focus color
// $edge: set to none to not draw the bottom edge or specify a color to not
// use the default one
//
// possible $t values:
// normal, focus, insensitive, backdrop, backdrop-insensitive, osd, osd-focus, osd-backdrop;
//
$_blank_edge: if($edge == none, none, 0 1px transparentize($edge, 1));
$_entry_edge: if($edge == none, none, _widget_edge($edge));
@if $t==normal {
color: $text_color;
border-color: $borders_color;
background-color:$base_color;
@include _shadows(entry_focus_shadow(transparentize($fc, 1)), $_entry_edge);
// for the transition to work the number of shadows in different states needs to match, hence the transparent shadow here.
}
@if $t==focus {
@include _shadows(entry_focus_shadow($fc), $_entry_edge);
border-color: entry_focus_border($fc);
}
@if $t==insensitive {
color: $insensitive_fg_color;
border-color: $borders_color;
background-image: linear-gradient(to bottom, $insensitive_bg_color);
box-shadow: $_entry_edge;
}
@if $t==backdrop {
color: $backdrop_text_color;
border-color: $backdrop_borders_color;
background-image: linear-gradient(to bottom, $backdrop_base_color);
box-shadow: $_blank_edge;
}
@if $t==backdrop-insensitive {
color: $backdrop_insensitive_color;
border-color: $backdrop_borders_color;
background-image: linear-gradient(to bottom, $insensitive_bg_color);
box-shadow: $_blank_edge;
}
@if $t==osd {
color: $osd_text_color;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, transparentize(opacify($osd_borders_color, 1), 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
}
@if $t==osd-focus {
color: $osd_text_color;
border-color: $selected_bg_color;
background-image: linear-gradient(to bottom, transparentize(opacify($osd_borders_color, 1), 0.5));
background-clip: padding-box;
box-shadow: entry_focus_shadow($fc);
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
}
@if $t==osd-insensitive {
color: $osd_insensitive_fg_color;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, $osd_insensitive_bg_color);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
}
@if $t==osd-backdrop {
color: $osd_text_color;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, transparentize(opacify($osd_borders_color, 1), 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
}
}
//
// Buttons
//
@function _border_color ($c) { @return darken($c, 25%); } // colored buttons want
// the border form the
// base color
@function _text_shadow_color ($tc: $fg_color, $bg: $bg_color) {
//
// calculate the color of text shadows
//
// $tc is the text color
// $bg is the background color
//
$_lbg: lightness($bg)/100%;
@if lightness($tc)<50% { @return transparentize(white, 1-$_lbg/($_lbg*1.3)); }
@else { @return transparentize(black, $_lbg*0.8); }
}
@function _button_hilight_color($c) {
//
// calculate the right top hilight color for buttons
//
// $c: base color;
//
@if lightness($c)>95% { @return white; }
@else if lightness($c)>90% { @return transparentize(white, 0.2); }
@else if lightness($c)>80% { @return transparentize(white, 0.4); }
@else if lightness($c)>50% { @return transparentize(white, 0.6); }
@else if lightness($c)>40% { @return transparentize(white, 0.8); }
@else { @return transparentize(white, 0.95); }
}
@mixin _button_text_shadow ($tc:$fg_color, $bg:$bg_color) {
//
// helper function for the text emboss effect
//
// $tc is the optional text color, not the shadow color
//
// TODO: this functions needs a way to deal with special cases
//
$_shadow: _text_shadow_color($tc, $bg);
@if lightness($tc)<50% {
text-shadow: 0 1px $_shadow;
-gtk-icon-shadow: 0 1px $_shadow;
}
@else {
text-shadow: 0 1px $_shadow;
-gtk-icon-shadow: 0 -1px $_shadow;
}
}
@mixin button($t, $c:$bg_color, $tc:$fg_color, $edge: none) {
//
// Button drawing function
//
// $t: button type,
// $c: base button color for colored* types
// $tc: optional text color for colored* types
// $edge: set to none to not draw the bottom edge or specify a color to not
// use the default one
//
// possible $t values:
// normal, hover, active, insensitive, insensitive-active,
// backdrop, backdrop-active, backdrop-insensitive, backdrop-insensitive-active,
// osd, osd-hover, osd-active, osd-insensitive, osd-backdrop, undecorated
//
$_hilight_color: _button_hilight_color($c);
$_button_edge: if($edge == none, none, _widget_edge($edge));
$_blank_edge: if($edge == none, none, _widget_edge(transparentize($edge,1)));
// Normal Button
@if $t==normal {
color: $tc;
outline-color: transparentize($tc, 0.7);
border-color: if($c!=$bg_color, _border_color($c), $borders_color);
background-image: linear-gradient(to bottom, $c, darken($c, 5%));
@include _button_text_shadow($tc, $c);
@include _shadows(inset 0 1px $_hilight_color, $_button_edge);
@if $variant == 'light' {
box-shadow:0 1px 0 0 transparentize(white, 0.2);
}
@else {
box-shadow:0 1px 0 0 transparentize(white, 0.95);
}
}
// Hover Button
@else if $t==hover {
color: $tc;
outline-color: transparentize($tc, 0.7);
border-color: if($c!=$bg_color, _border_color($c), $borders_color);
@if $variant == 'light' {
background-image: linear-gradient(to bottom, lighten($c, 6%), $c 60%, darken($c, 4%));
@include _button_text_shadow($tc,lighten($c, 6%));
@include _shadows(inset 0 1px _button_hilight_color(lighten($c, 6%)), $_button_edge);
}
@else {
background-image: linear-gradient(to bottom, lighten($c, 1%), darken($c, 2%) 60%, darken($c, 4%));
@include _button_text_shadow($tc,lighten($c, 6%));
@include _shadows(inset 0 1px _button_hilight_color(darken($c, 2%)), $_button_edge);
}
}
// Pressed button
@else if $t==active {
color: $tc;
outline-color: transparentize($tc, 0.7);
border-color: if($c!=$bg_color, _border_color($c), $borders_color);
background-image: linear-gradient(to bottom, darken($c, 7%), darken($c, 2%));
@include _button_text_shadow($tc, darken($c,10%));
@include _shadows(inset 0 2px 1px -2px transparentize(black,0.4),
$_button_edge);
@if $variant == 'light' {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.2);
}
@else {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.95);
}
}
// Insensitive Button
@else if $t==insensitive {
$_bg: if($c!=$bg_color, mix($c, $base_color, 85%), $insensitive_bg_color);
GtkLabel, & { color: if($tc!=$fg_color, mix($tc, $_bg, 50%), $insensitive_fg_color); }
label, & { color: if($tc!=$fg_color, mix($tc, $_bg, 50%), $insensitive_fg_color); }
border-color: if($c!=$bg_color, _border_color($c), $insensitive_borders_color);
background-image: none;
background-color: $_bg;
text-shadow: none;
box-shadow: none;
-gtk-icon-shadow: none;
}
// Insensitive Pushed Button
@else if $t==insensitive-active {
$_bg: if($c!=$bg_color, darken(mix($c,$base_color, 85%), 5%),
$insensitive_bg_color);
$_bc: if($c!=$bg_color, _border_color($c), $insensitive_borders_color);
GtkLabel, & { color: if($c!=$bg_color, mix($tc, $_bg, 60%), $insensitive_fg_color); }
label, & { color: if($c!=$bg_color, mix($tc, $_bg, 60%), $insensitive_fg_color); }
border-color: $_bc;
background-image: none;
background-color: $_bg;
text-shadow: none;
@if $variant == 'light' {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.2);
}
@else {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.95);
}
}
// Backdrop Button
@else if $t==backdrop {
$_bg: if($c!=$bg_color,$c,$backdrop_bg_color);
$_bc: if($variant=='light',$c,_border_color($c));
GtkLabel, & { color: if($tc!=$fg_color,mix($tc, $_bg, 80%), $backdrop_fg_color); }
label, & { color: if($tc!=$fg_color,mix($tc, $_bg, 80%), $backdrop_fg_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
background-image: linear-gradient(to bottom, $_bg);
text-shadow: none;
-gtk-icon-shadow: none;
@include _shadows(inset 0 1px transparentize(white, 1), $_blank_edge);
}
// Backdrop Pressed Button
@else if $t==backdrop-active {
$_bg: if($c!=$bg_color, darken($c, 10%), $backdrop_dark_fill);
$_bc: if($variant=='light',$_bg,_border_color($c));
GtkLabel, & { color: if($tc!=$fg_color, mix($tc, $_bg, 80%), $backdrop_fg_color); }
label, & { color: if($tc!=$fg_color, mix($tc, $_bg, 80%), $backdrop_fg_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
background-image: none;
@if $variant == 'light' {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.2);
}
@else {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.95);
}
}
// Insensitive Backdrop Button
@else if $t==backdrop-insensitive {
$_bg: if($c!=$bg_color, mix($c, $base_color, 85%), $insensitive_bg_color);
$_bc: if($variant=='light', $_bg,_border_color($c));
GtkLabel, & { color: if($c!=$bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color); }
label, & { color: if($c!=$bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
background-image: none;
background-color: $_bg;
text-shadow: none;
-gtk-icon-shadow: none;
// white with 0 alpha to avoid an ugly transition, since no color means
// black with 0 alpha
@include _shadows(inset 0 1px transparentize(white, 1), $_blank_edge);
}
// Insensitive Backdrop Pushed Button
@else if $t==backdrop-insensitive-active {
$_bg: if($c!=$bg_color, darken(mix($c, $base_color, 85%), 5%),
darken($insensitive_bg_color, 5%));
$_bc: if($variant=='light', $_bg,_border_color($c));
label { color: if($c!=$bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
background-image: none;
background-color: $_bg;
@if $variant == 'light' {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.2);
}
@else {
box-shadow:inset 0 1px 1px 0 transparentize(black, 0.95), 0 1px 0 0 transparentize(white, 0.95);
}
}
// OSD Button
@else if $t==osd {
$_bg: if($c!=$bg_color, transparentize($c, 0.5),
$osd_bg_color);
color: $osd_fg_color;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, $_bg);
background-clip: padding-box;
box-shadow: inset 0 1px transparentize(white, 0.9);
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
outline-color: transparentize($osd_fg_color, 0.7);
}
// Hover OSD Button
@else if $t==osd-hover {
$_bg: if($c!=$bg_color, transparentize($c, 0.3),
lighten($osd_bg_color, 12%));
color: white;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, $_bg);
background-clip: padding-box;
box-shadow: inset 0 1px transparentize(white, 0.9);
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
outline-color: transparentize($osd_fg_color, 0.7);
}
// ACtive OSD Button
@else if $t==osd-active {
$_bg: if($c!=$bg_color, $c, $osd_borders_color);
color: white;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, $_bg);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
outline-color: transparentize($osd_fg_color, 0.7);
}
// Insensitive OSD Button
@else if $t==osd-insensitive {
color: $osd_insensitive_fg_color;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, $osd_insensitive_bg_color);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
}
// Backdrop OSD Button
@else if $t==osd-backdrop {
$_bg: if($c!=$bg_color, transparentize($c, 0.5),
$osd_bg_color);
color: $osd_fg_color;
border-color: $osd_borders_color;
background-image: linear-gradient(to bottom, $_bg);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
}
// Reset
@else if $t==undecorated {
border-color: transparent;
background-color: transparent;
background-image: none;
@include _shadows(inset 0 1px transparentize(white, 1), $_blank_edge);
text-shadow: none;
-gtk-icon-shadow: none;
}
}
@mixin trough($flat:false, $c:$bg_color, $tc:$fg_color, $noedge:true) {
color: mix($tc, $bg_color, 80%);
@if $flat { background-image: linear-gradient(to bottom, $c); }
@else {
background-image: linear-gradient(to bottom,
mix(black,$c,15%) 5%,
mix(black,$c,10%) 20%,
mix(black,$c,10%) 90%,
$c);
}
border-color: if($c!=$bg_color, _border_color($c), $border_color);
@if not($noedge) {
@if lightness($c) > 60% {
box-shadow: inset 0 -1px $borders_edge,
0 1px $borders_edge;
}
@else {
box-shadow: inset 0 -1px transparentize($borders_edge, 0.5),
0 1px transparentize($borders_edge, 0.5);
}
}
@else { box-shadow: none; }
}
@mixin overshoot($p, $t:normal, $c:$fg_color) {
//
// overshoot
//
// $p: position
// $t: type
// $c: base color
//
// possible $p values:
// top, bottom, right, left
//
// possible $t values:
// normal, backdrop
//
$_small_gradient_length: 5%;
$_big_gradient_length: 100%;
$_position: center top;
$_small_gradient_size: 100% $_small_gradient_length;
$_big_gradient_size: 100% $_big_gradient_length;
@if $p==bottom {
$_position: center bottom;
$_linear_gradient_direction: to top;
}
@else if $p==right {
$_position: right center;
$_small_gradient_size: $_small_gradient_length 100%;
$_big_gradient_size: $_big_gradient_length 100%;
}
@else if $p==left {
$_position: left center;
$_small_gradient_size: $_small_gradient_length 100%;
$_big_gradient_size: $_big_gradient_length 100%;
}
$_small_gradient_color: $c;
$_big_gradient_color: $c;
@if $c==$fg_color {
$_small_gradient_color: darken($borders_color, 10%);
$_big_gradient_color: $fg_color;
@if $t==backdrop { $_small_gradient_color: $backdrop_borders_color; }
}
$_small_gradient: -gtk-gradient(radial,
$_position, 0,
$_position, 0.5,
to($_small_gradient_color),
to(transparentize($_small_gradient_color, 1)));
$_big_gradient: -gtk-gradient(radial,
$_position, 0,
$_position, 0.6,
from(transparentize($_big_gradient_color, 0.93)),
to(transparentize($_big_gradient_color, 1)));
@if $t==normal {
background-image: $_small_gradient, $_big_gradient;
background-size: $_small_gradient_size, $_big_gradient_size;
}
@else if $t==backdrop {
background-image: $_small_gradient;
background-size: $_small_gradient_size;
}
background-repeat: no-repeat;
background-position: $_position;
background-color: transparent; // reset some properties to be sure to not inherit them somehow
border: none; //
box-shadow: none; //
}
@mixin undershoot($p) {
//
// undershoot
//
// $p: position
//
// possible $p values:
// top, bottom, right, left
//
$_undershoot_color_dark: transparentize(black, 0.8);
$_undershoot_color_light: transparentize(white, 0.8);
$_gradient_dir: left;
$_dash_bg_size: 10px 1px;
$_gradient_repeat: repeat-x;
$_bg_pos: center $p;
background-color: transparent; // shouldn't be needed, but better to be sure;
@if ($p == left) or ($p == right) {
$_gradient_dir: top;
$_dash_bg_size: 1px 10px;
$_gradient_repeat: repeat-y;
$_bg_pos: $p center;
}
background-image: linear-gradient(to $_gradient_dir, // this is the dashed line
$_undershoot_color_light 50%,
$_undershoot_color_dark 50%);
padding-#{$p}: 1px;
background-size: $_dash_bg_size;
background-repeat: $_gradient_repeat;
background-origin: content-box;
background-position: $_bg_pos;
border: none;
box-shadow: none;
}

View File

@ -1,65 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/********
* Apps *
********/
@import url("apps/appcenter.css");
@import url("apps/archive-manager.css");
@import url("apps/baobab.css");
@import url("apps/bijiben.css");
@import url("apps/birdie.css");
@import url("apps/budgie.css");
@import url("apps/calculator.css");
@import url("apps/calendar.css");
@import url("apps/cheese.css");
@import url("apps/epiphany.css");
@import url("apps/fallback.css");
@import url("apps/geary.css");
@import url("apps/gedit.css");
@import url("apps/gnome-calendar.css");
@import url("apps/gnome-clocks.css");
@import url("apps/gnome-contacts.css");
@import url("apps/gnome-disks.css");
@import url("apps/gnome-documents.css");
@import url("apps/gnome-music.css");
@import url("apps/gnome-photos.css");
@import url("apps/gnome-software.css");
@import url("apps/gnome-system-monitor.css");
@import url("apps/gnome-terminal.css");
@import url("apps/gnome-tweak-tool.css");
@import url("apps/gnome-weather.css");
@import url("apps/gnome.css");
@import url("apps/logs.css");
@import url("apps/midori.css");
@import url("apps/nautilus.css");
@import url("apps/noise.css");
@import url("apps/pantheon-files.css");
@import url("apps/pantheon-terminal.css");
@import url("apps/pantheon.css");
@import url("apps/rhythmbox.css");
@import url("apps/scratch-text-editor.css");
@import url("apps/settings.css");
@import url("apps/shotwell.css");
@import url("apps/snap.css");
@import url("apps/synaptic.css");
@import url("apps/unity.css");
@import url("apps/vocal.css");
@import url("apps/xfce.css");
@import url("apps/yelp.css");

View File

@ -0,0 +1,17 @@
/*******************
* Archive Manager *
*******************/
$archive_manager: #A88A67;
FrWindow {
.titlebar,
.header-bar,
.toolbar {
background-color: $archive_manager;
&:backdrop {
background-color: darken($archive_manager,10%);
}
}
}

View File

@ -0,0 +1,45 @@
/*********
* Birdie *
*********/
$birdie: #3998E7;
BirdieWidgetsUnifiedWindow {
.titlebar,
.header-bar {
background-image:none;
background-color: $birdie;
&:backdrop {
background-image:none;
background-color: darken($birdie,10%);
}
}
.menu-button {
padding: 0px;
padding-left: 6px;
padding-right: 6px;
}
}
BirdieWidgetsTweetList * {
background-image: none;
background: none;
}
BirdieWidgetsUserbox {
background-color: transparentize($birdie, 0.8)
}
BirdieWidgetsNotebook {
.header {
background-color: $base_color;
}
tab:active {
box-shadow:inset 0 -3px 0 0 $birdie;
}
}

View File

@ -0,0 +1,461 @@
/***************
* font-viewer *
***************/
SushiFontWidget {
padding: 6px 12px;
}
/**********
* Sudoku *
**********/
SudokuView SudokuCellView {
border: inherit;
background-color: inherit;
}
SudokuView SudokuCellView:backdrop {
border: inherit;
background-color: inherit;
}
SudokuView {
border: none;
}
/*****************
* Character Map *
*****************/
GucharmapChartable {
background-color: $base_color;
}
GucharmapChartable:active,
GucharmapChartable:focus,
GucharmapChartable:selected {
background-color: $selected_bg_color;
color: $selected_fg_color;
}
/********
* Misc *
*******/
ApDocView, /* Abiword */
EogScrollView, /* Eog */
CheeseThumbView /* Cheese */
{
-EogScrollView-shadow-type: none;
}
/***********
* Builder *
***********/
$gnome_builder: #CBBB2E;
GbGreeterWindow,
GbWorkbench {
.titlebar,
.header-bar {
background-color: $gnome_builder;
&:backdrop {
background-color: darken($gnome_builder,10%);
}
}
}
/**************
* Calculator *
**************/
$gnome_calculator: #07ce8e;
MathWindow {
background-color: $base_color;
border-radius: 0 0 4px 4px;
.titlebar,
.header-bar,
.toolbar {
background-color: $gnome_calculator;
&:backdrop {
background-color: darken($gnome_calculator,10%);
}
}
MathButtons {
GtkComboBox,
.button {
background-color: transparent;
background-image: none;
box-shadow:none;
border: none;
text-shadow: none;
color: $gnome_calculator;
font: bold;
&:hover {
background-image: none;
background-color:$base_color;
color: $gnome_calculator;
}
&:backdrop {
color: darken($gnome_calculator,10%);
}
&.text-button.suggested-action {
background-image: none;
box-shadow:none;
text-shadow: none;
background-color: $gnome_calculator;
color: $base_color;
&:backdrop {
background-color: darken($gnome_calculator,10%);
color: transparentize($base_color, 0.5);
}
}
}
}
MathDisplay {
padding: 4px;
background-color:$base_color;
border: 1px solid $borders_color;
}
}
/************
* Calendar *
************/
$gnome_calendar: #75A3F6;
GcalWindow {
.titlebar,
.header-bar {
background-color: $gnome_calendar;
&:backdrop {
background-color: darken($gnome_calendar,10%);
}
}
}
/**********
* Cheese *
**********/
$cheese: #ad7fa8;
CheeseWindow {
.titlebar,
.header-bar,
.toolbar {
background-color: $cheese;
&:backdrop {
background-color: darken($cheese,10%);
}
}
}
/************
* Contacts *
************/
$gnome_contacts: #2095F2;
ContactsWindow {
.titlebar,
.header-bar {
background-color: $gnome_contacts;
&:backdrop {
background-color: darken($gnome_contacts,10%);
}
}
}
/**********
* Clocks *
**********/
$gnome_clocks: #4BAE4F;
ClocksWindow {
.titlebar,
.header-bar {
background-color: $gnome_clocks;
&:backdrop {
background-color: darken($gnome_clocks,10%);
}
}
}
/*********
* Disks *
*********/
$gnome_disks: #8561C5;
GduWindow {
.titlebar,
.header-bar {
background-color: $gnome_disks;
&:backdrop {
background-color: darken($gnome_disks,10%);
}
}
}
/**************
* Disk Usage *
**************/
$gnome_baobab: #CC5E55;
BaobabWindow {
.titlebar,
.header-bar {
background-color: $gnome_baobab;
&:backdrop {
background-color: darken($gnome_baobab,10%);
}
}
}
/*************
* Documents *
*************/
$gnome_documents: #C2352A;
#Documents {
.titlebar,
.header-bar {
background-color: $gnome_documents;
&:backdrop {
background-color: darken($gnome_documents,10%);
}
}
}
/************
* Epiphany *
************/
$gnome_epiphany: #6573C3;
EphyWindow {
.titlebar,
.header-bar {
background-color: $gnome_epiphany;
&:backdrop {
background-color: darken($gnome_epiphany,10%);
}
.incognito-mode {
background-color: darken($gnome_epiphany,15%);
.button {
background-image:none;
}
&:backdrop {
background-color: darken($gnome_epiphany,25%);
}
}
}
}
/*********
* Gedit *
*********/
$gedit: #DC4836;
GeditWindow {
.titlebar,
.header-bar {
background-color: $gedit;
&:backdrop {
background-color: darken($gedit,10%);
}
}
}
/**************
* Log Viewer *
**************/
$gnome_logs: #009587;
GlWindow,
LogviewWindow {
.titlebar,
.header-bar,
.toolbar {
background-color: $gnome_logs;
&:backdrop {
background-color: darken($gnome_logs,10%);
}
}
}
/*********
* Music *
*********/
$gnome_music: #fe9700;
gnomemusic+window+Window {
.titlebar,
.header-bar {
background-color: $gnome_music;
&:backdrop {
background-color: darken($gnome_music,10%);
}
}
}
/*****************
* Notes/Bijiben *
*****************/
$bijiben: #ebdd4d;
BjbMainToolbar,
BjbWindowBase {
.titlebar,
.header-bar {
background-color: $bijiben;
&:backdrop {
background-color: darken($bijiben,10%);
}
}
}
/**********
* Photos *
**********/
$gnome_photos: #D30101;
PhotosMainWindow {
.titlebar,
.header-bar {
background-color: $gnome_photos;
&:backdrop {
background-color: darken($gnome_photos,10%);
}
}
}
/**********
* Polari *
**********/
$polari: #4BAE4F;
.titlebar,
.header-bar {
&.polari-titlebar-left,
&.polari-titlebar-right {
background-color: $polari;
&:backdrop {
background-color: darken($polari,10%);
}
}
}
/*******************
* System Settings *
******************/
$gnome_settings: #5F7C8A;
CcWindow {
.titlebar,
.header-bar {
background-color: $gnome_settings;
&:backdrop {
background-color: darken($gnome_settings,10%);
}
}
}
/************
* Software *
************/
$gnome_software: #1A77C2;
#window_software {
.titlebar,
.header-bar {
background-color: $gnome_software;
&:backdrop {
background-color: darken($gnome_software,10%);
}
}
}
/******************
* System Monitor *
******************/
$gnome_system_monitor: #6fbe72;
#gnome-system-monitor {
.titlebar,
.header-bar {
background-color: $gnome_system_monitor;
&:backdrop {
background-color: darken($gnome_system_monitor,10%);
}
}
}
/********
* Yelp *
********/
$yelp: #435ece;
YelpWindow {
.titlebar,
.header-bar {
background-color: $yelp;
&:backdrop {
background-color: darken($yelp,10%);
}
}
}

View File

@ -0,0 +1,17 @@
/**********
* Midori *
**********/
$midori: #7FC843;
MidoriBrowser {
.titlebar,
.header-bar,
.toolbar {
background-color: $midori;
&:backdrop {
background-color: darken($midori,10%);
}
}
}

View File

@ -0,0 +1,356 @@
/********
* Gala *
*******/
.gala-notification {
border-width: 0;
border-radius: 2px;
color: white;
border: 1px solid $base_color;
background-color: $base_color;
.title,
.label {
color: $fg_color;
}
}
.gala-button {
padding: 3px;
color: $base_color;
border: none;
border-radius: 50%;
background-image: linear-gradient(to bottom,
#7e7e7e,
#3e3e3e
);
box-shadow: inset 0 0 0 1px transparentize(white, 0.02),
inset 0 1px 0 0 transparentize(white, 0.07),
inset 0 -1px 0 0 transparentize(white, 0.01),
0 0 0 1px transparentize(black, 0.40),
0 3px 6px transparentize(black, 0.16),
0 3px 6px transparentize(black, 0.23);
text-shadow: 0 1px 1px transparentize(black, 0.6);
}
/**********
* Notify *
*********/
.notify {
/*-notify-shadow: 0px 2px 18px transparentize(black, 0.60);*/
border-radius: 5px;
border: 1px solid transparentize(black, 0.30);
background-color: transparentize($base_color, 0.95);
.low {}
.critical {}
}
/***************
* SwitchBoard *
***************/
.category-label {
font-weight: bold;
font-size: 1.04em;
color: $fg_color;
}
/*************
* Slingshot *
************/
.button.app {
border: none;
border-radius: 0;
box-shadow: none;
background-image: none;
.app {
&:hover{
border-radius: 8px;
border: none;
background-color: transparentize($selected_bg_color, 0.7);
color: white;
}
&:focus{
/*background-color: transparentize(black, 0.20);*/
}
}
}
.search-item {
border-radius: 0;
border: none;
color: $fg_color;
background: none;
&:hover,
&:focus {
border-radius: 0;
background-color: transparentize($selected_bg_color, 0.7);
color: $selected_fg_color;
}
}
.search-entry-large,
.search-entry-large:focus {
border: none;
font: 18;
font-weight: 300;
background-image: none;
background: none;
box-shadow: none;
border-radius: 0;
}
.search-category-header {
font-weight: bold;
color: $fg_color;
}
/*********
* Panel *
********/
.panel {
background-color: transparent;
transition: all 100ms ease-in-out;
.maximized {
background-color: #000;
}
.translucent {
background-color: transparentize(black, 0.5);
}
.color-light {
.composited-indicator {
> revealer label,
> revealer image,
> GtkRevealer {
color: transparentize(black, 0.65);
text-shadow: 0 0 2px transparentize(white, 0.7),
0 1px 0 transparentize(white, 0.75);
icon-shadow: 0 0 2px transparentize(white, 0.7),
0 1px 0 transparentize(white, 0.75);
}
}
}
}
.composited-indicator {
> revealer label,
> revealer image,
> GtkRevealer {
color: $base_color;
font-weight: bold;
text-shadow: 0 0 2px transparentize(black, 0.7),
0 1px 2px transparentize(black, 0.4);
icon-shadow: 0 0 2px transparentize(black, 0.7),
0 1px 2px transparentize(black, 0.4);
}
}
/*************
* AppCenter *
*************/
$appcenter: #378BE6;
AppCenterMainWindow {
.titlebar,
.header-bar{
background-color: $appcenter;
&:backdrop {
background-color: darken($appcenter,10%);
}
}
}
/**************
* Calculator *
**************/
$pantheon_calculator: #07ce8e;
PantheonCalculatorMainWindow {
border-radius: 0 0 4px 4px;
.titlebar,
.header-bar {
background-color: $pantheon_calculator;
&:backdrop {
background-color: darken($pantheon_calculator,10%);
}
}
.window-frame {
border-radius:3px;
}
}
/********
* Maya *
********/
$maya: #8CD33F;
MayaViewMayaToolbar {
&.titlebar,
&.header-bar {
background-color: $maya;
&:backdrop {
background-color: darken($maya,10%);
}
}
}
/*********
* Cards *
*********/
.deck {
background-color: darken($bg_color, 8%);
}
.card {
background-color: $base_color;
border: none;
box-shadow: 0 0 0 1px transparentize(black, 0.95),
0 3px 3px transparentize(black, 0.8);
transition: all 150ms ease-in-out;
}
.card.collapsed {
background-color: darken($base_color, 5%);
box-shadow: 0 0 0 1px transparentize(black, 0.95),
0 1px 2px transparentize(black, 0.8);
}
/*********
* Noise *
*********/
$noise: #EE6020;
NoiseLibraryWindow {
border-radius: 0 0 4px 4px;
.titlebar,
.header-bar {
background-color: $noise;
&:backdrop {
background-color: darken($noise,10%);
}
}
.action-bar {
border-radius: 0 0 4px 4px;
}
.window-frame {
border-radius:3px;
}
}
/***********
* Scratch *
***********/
$scratch: #e74c3c;
ScratchMainWindow {
.titlebar,
.header-bar {
background-color: $scratch;
&:backdrop {
background-color: darken($scratch,10%);
}
}
}
/********
* Snap *
********/
$snap: #6d266a;
SnapMainWindow,
SnapSnapWindow {
.titlebar,
.header-bar {
background-color: $snap;
&:backdrop {
background-color: darken($snap,10%);
}
}
.take-button {
border-radius: 0;
}
}
/*******************
* Photos/Shotwell *
*******************/
$pantheon_photos: #5544B5;
DirectWindow,
LibraryWindow {
.titlebar,
.header-bar {
background-color: $pantheon_photos;
&:backdrop {
background-color: darken($pantheon_photos,10%);
}
}
.the-button-in-the-combobox {
background: none;
}
}
.checkerboard-layout {
background-color: $bg_color;
background-image: linear-gradient(45deg,
transparentize(black, 0.9) 25%,
transparent 25%,
transparent 75%,
transparentize(black, 0.9) 75%,
transparentize(black, 0.9)),
linear-gradient(45deg,
transparentize(black, 0.9) 25%,
transparent 25%,
transparent 75%,
transparentize(black, 0.9) 75%,
transparentize(black, 0.9));
background-size: 24px 24px;
background-position: 0 0, 12px 12px
}
.checkboard-layout .item {
background-color: $fg_color;
}

View File

@ -0,0 +1,182 @@
/********
* Unity *
*********/
$unity_color: #636E73; /* Unity window border color */
$backdrop_unity_color: darken($unity_color,10%); /* Backdrop Unity window border color */
$unity_text_color: #dbdee0; /* Unity window text color */
$backdrop_unity_text_color: darken($unity_text_color,10%); /* Backdrop Unity window text color */
$unity_panel_color: darken($unity_color, 20%); /* Unity panel color #454D50 */
$backdrop_unity_panel_color: darken($unity_panel_color, 10%); /* Backdrop Unity panel color */
UnityDecoration {
/* Border properties (top, right, bottom, left) */
-UnityDecoration-extents: 28px 1px 1px 1px;/* the size of the decorations */
-UnityDecoration-input-extents: 10px;/* the extra size of the input areas */
/* Shadows settings */
-UnityDecoration-shadow-offset-x: 1px;/* Size property, the shadow x offset */
-UnityDecoration-shadow-offset-y: 1px;/* Size property, the shadow y offset */
-UnityDecoration-active-shadow-color: rgba (0, 0, 0, 0.647);/* Color property, active window shadow color */
-UnityDecoration-active-shadow-radius: 8px;/* Size property, active window shadow radius */
-UnityDecoration-inactive-shadow-color: rgba (0, 0, 0, 0.647);/* Color property, inactive windows shadow color */
-UnityDecoration-inactive-shadow-radius: 5px;/* Size property, inactive windows shadow radius */
/* Glow applied to the selected scaled window */
-UnityDecoration-glow-size: 8px;/* Size property, size of glow */
-UnityDecoration-glow-color: $selected_bg_color;/* Color property of the glow */
/* Title settings */
-UnityDecoration-title-indent: 10px;/* Size property, left indent of the title */
-UnityDecoration-title-fade: 35px;/* Size property, space of the title that can be faded */
-UnityDecoration-title-alignment: 0.0;/* Float from 0.0 to 1.0, to align the title */
background-color: $unity_color;
color: $unity_text_color;
.top {
padding: 0 5px 0 5px;
border-radius: 4px 4px 0px 0px;
box-shadow: none;
border: 1px solid $unity_color;
border-bottom-width: 0;
background-color: $unity_color;
color: $unity_text_color;
border-top: 1px solid rgba(255,255,255,0.1);
&:backdrop {
border-bottom-width: 0;
background-color: $backdrop_unity_color;
color: $backdrop_unity_text_color;
border-top: 1px solid rgba(255,255,255,0.1);
}
.menuitem {
color: $unity_text_color;
&:backdrop {
background-color: $backdrop_unity_color;
color: $backdrop_unity_text_color;
}
}
}
}
UnityDecoration.left,
UnityDecoration.right {
background-repeat: repeat-x;
background-color: darken($unity_color, 0.6);
background-size: 1px 120px;
background-clip: border-box;
background-image: linear-gradient(to bottom,
$unity_color,
darken($unity_color, 0.6)
);
background-image: -gtk-gradient (linear, left top, left bottom,
color-stop (0, $unity_color),
color-stop (0.5, $unity_color),
color-stop (1, darken($unity_color, 0.6)));
}
UnityDecoration.bottom {
background-size: 1px;
background-repeat: repeat-x;
background-color: darken($unity_color, 0.6);
}
UnityDecoration.left:backdrop,
UnityDecoration.right:backdrop,
UnityDecoration.bottom:backdrop {
background-size: 1px;
background-repeat: repeat-x;
background-color: $backdrop_unity_color;
}
/**************
* Unity Panel *
***************/
UnityPanelWidget,
.unity-panel {
background-color: $unity_panel_color;
color: $unity_text_color;
}
UnityPanelWidget:backdrop,
.unity-panel:backdrop {
background-color: $backdrop_unity_panel_color;
color: $backdrop_unity_text_color;
}
.unity-panel.menuitem,
.unity-panel .menuitem {
border-width: 0 1px;
color: $unity_text_color;
}
.unity-panel.menubar,
.unity-panel .menubar {
color: $unity_text_color;
}
.unity-panel.menu.menubar,
.unity-panel .menu .menubar {
background-color: $unity_panel_color;
color: $unity_text_color;
}
.unity-panel.menubar:backdrop,
.unity-panel .menubar *:backdrop {
color: $backdrop_fg_color;
}
.unity-panel.menubar.menuitem,
.unity-panel.menubar .menuitem {
padding: 3px 5px;
border-width: 1px;
border-style: solid;
border: none;
background: none;
color: $unity_text_color;
box-shadow: none;
}
.unity-panel.menubar.menuitem:hover,
.unity-panel.menubar .menuitem:hover {
border-radius: 0;
background-color: darken($unity_color, 1.05);
color: $unity_text_color;
box-shadow: none;
}
.unity-panel.menubar .menuitem *:hover {
color: white;
box-shadow: none;
}
.unity-panel.menubar .menuitem.separator,
.unity-panel.menubar.menuitem.separator {
-GtkMenuItem-horizontal-padding: 0;
-GtkWidget-separator-height: 1;
border: none;
color: $borders_color;
}
/* Force Quit */
SheetStyleDialog.unity-force-quit {
background-color: $base_color;
}
@keyframes playbackmenuitem_spinner {
to { -gtk-icon-transform: rotate(1turn); }
}
.menu IdoPlaybackMenuItem.menuitem:active {
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
animation: playbackmenuitem_spinner 1s infinite linear;
color: $selected_bg_color;
}

View File

@ -0,0 +1,16 @@
/*********
* Vocal *
*********/
$vocal: #9C69C6;
.titlebar,
.header-bar {
&.vocal-headerbar {
background-color: $vocal;
&:backdrop {
background-color: darken($vocal,10%);
}
}
}

View File

@ -1,33 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color appcenter #378BE6;
/**********
* Header *
**********/
AppCenterMainWindow .titlebar,
AppCenterMainWindow .header-bar {
background-color: @appcenter;
}
AppCenterMainWindow .titlebar:backdrop,
AppCenterMainWindow .header-bar:backdrop {
background-color: shade(@appcenter,0.9);
}

View File

@ -1,61 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color archives #A88A67;
/**********
* Header *
**********/
FrWindow .header-bar,
FrWindow .titlebar {
background-color: @archives;
}
FrWindow .header-bar:backdrop,titlebar
FrWindow .titlebar:backdrop {
background-color: shade(@archives,0.9);
}
/* Switch */
FrWindow .header-bar GtkSwitch.trough:active {
background-color: @archives;
}
FrWindow GtkSwitch.trough:active {
border: 1px solid shade(@archives, 0.8);
background-color: @archives;
}
FrWindow GtkSwitch.slider:active {
border: 1px solid shade(@archives, 0.8);
}
FrWindow .header-bar GtkSwitch.slider:active:backdrop,
FrWindow .header-bar GtkSwitch.slider:backdrop {
background-color: shade(@archives, 0.9);
}
FrWindow .toolbar.primary-toolbar {
background-color: @archives;
}
FrWindow .toolbar.primary-toolbar:backdrop {
background-color: shade(@archives,0.9);
}

View File

@ -1,53 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color baobab #CC5E55;
/**********
* Header *
**********/
BaobabWindow .titlebar,
BaobabWindow .header-bar {
background-color: @baobab;
}
BaobabWindow .titlebar:backdrop,
BaobabWindow .header-bar:backdrop {
background-color: shade(@baobab,0.9);
}
/* Toolbar */
.baobab-toolbar.toolbar {
border-color: shade (@background, 0.9);
border-style: solid;
border-width: 0 0 1px 0;
border-radius: 0;
}
/* Cell */
.cell.baobab-level-cell,
.cell.baobab-level-cell:hover,
.cell.baobab-level-cell:selected,
.cell.baobab-level-cell:selected:hover {
border-color: alpha(#000, 0.06);
border-width: 1px;
border-style: solid;
background-color: @base;
}

View File

@ -1,39 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color bijiben #ebdd4d;
/**********
* Header *
**********/
BjbMainToolbar,
BjbWindowBase .header-bar,
BjbWindowBase .titlebar {
background-color: @bijiben;
color: @header_text_dark;
}
BjbMainToolbar:backdrop,
BjbWindowBase .header-bar:backdrop,
BjbWindowBase .titlebar:backdrop {
background-color: shade(@bijiben,0.9);
color: @backdrop_header_text_dark;
}

View File

@ -1,75 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color birdie #3998E7;
/**********
* Header *
**********/
BirdieWidgetsUnifiedWindow .titlebar,
BirdieWidgetsUnifiedWindow .header-bar {
background-color: @birdie;
}
BirdieWidgetsUnifiedWindow .titlebar:backdrop,
BirdieWidgetsUnifiedWindow .header-bar:backdrop {
background-color: shade(@birdie,0.9);
}
BirdieWidgetsTweetList * {
background-image: none;
background: none;
}
BirdieWidgetsUserbox {
background-color: alpha(@birdie, 0.2)
}
/* Notebook */
BirdieWidgetsNotebook
BirdieWidgetsNotebook .notebook .header,
BirdieWidgetsNotebook .dynamic-notebook .header {
background-color: @base;
}
/* Active */
BirdieWidgetsNotebook tab:active {
box-shadow:inset 0 -3px 0 0 @birdie;
}
/*Menu Button*/
BirdieWidgetsUnifiedWindow .titlebar .menu-button,
BirdieWidgetsUnifiedWindow .header-bar .menu-button,
BirdieWidgetsUnifiedWindow .titlebar .menu-button GtkImage,
BirdieWidgetsUnifiedWindow .header-bar .menu-button GtkImage {
padding: 0px;
padding-left: 6px;
padding-right: 6px;
}
BirdieWidgetsUnifiedWindow .titlebar .menu-button:backdrop,
BirdieWidgetsUnifiedWindow .header-bar .menu-button:backdrop,
BirdieWidgetsUnifiedWindow .titlebar .menu-button GtkImage:backdrop,
BirdieWidgetsUnifiedWindow .header-bar .menu-button GtkImage:backdrop {
padding: 0px;
padding-left: 6px;
padding-right: 6px;
}

View File

@ -1,162 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/**********
* Budgie *
**********/
.budgie-panel {
background-color: alpha(black, 0.0);
background-image: none;
border-top: 1px solid alpha(white, 0.0);
border-bottom: 2px solid black;
transition: 100ms ease-out;
}
.max-budgie-panel {
background-color: alpha(black, 0.7);
border-top: 1px solid alpha(white, 0.2);
border-bottom: 2px solid black;
transition: 100ms ease-in;
}
/* top panel */
.budgie-panel.top {
border: 1px solid alpha(white, 0.0);
border-top: 2px solid black;
}
.max-budgie-panel.top {
border: 1px solid alpha(black, 0.7);
border-top: 2px solid black;
border-bottom: 1px solid alpha(white, 0.2);
}
/* left panel */
.budgie-panel.left {
border: 1px solid alpha(white, 0.0);
border-left: 2px solid black;
}
.max-budgie-panel.left {
border: 1px solid alpha(black, 0.7);
border-left: 2px solid black;
border-right: 1px solid alpha(white, 0.2);
}
/* right panel */
.budgie-panel.right {
border: 1px solid alpha(white, 0.0);
border-right: 2px solid black;
}
.max-budgie-panel.right {
border: 1px solid alpha(black, 0.7);
border-right: 2px solid black;
border-left: 1px solid alpha(white, 0.2);
}
.budgie-panel .message-area {
background-color: alpha(black, 0.2);
border: 1px solid alpha(white, 0.06);
border-radius: 6px;
text-shadow: 1px 1px alpha(black, 0.5);
icon-shadow: 1px 1px alpha(black, 0.5);
transition: 100ms ease-out;
}
.budgie-panel .max-message-area {
background-color: alpha(black, 0.36);
border: 1px solid alpha(white, 0.2);
transition: 100ms ease-in;
}
.budgie-panel .launcher,
PanelToplevel .launcher {
border: 2px solid alpha(white, 0.0);
background-image: none;
transition: 100ms ease-in;
}
.budgie-panel .launcher:hover,
PanelToplevel .launcher:hover {
border: 2px solid alpha(white, 0.0);
border-bottom: 2px solid alpha(white, 0.5);
}
.budgie-panel .launcher:active,
PanelToplevel .launcher:active {
border: 2px solid alpha(white, 0.0);
border-bottom: 2px solid white;
}
/* Top launchers */
.top .launcher:hover {
border: 2px solid alpha(white, 0.0);
border-top: 2px solid alpha(white, 0.5);
}
.top .launcher:active {
border: 2px solid alpha(white, 0.0);
border-top: 2px solid white;
}
/* Left hand side launchers */
.left .launcher:hover {
border: 2px solid alpha(white, 0.0);
border-left: 2px solid alpha(white, 0.5);
}
.left .launcher:active {
border: 2px solid alpha(white, 0.0);
border-left: 2px solid white;
}
/* Right hand side launchers */
.right .launcher:hover {
border: 2px solid alpha(white, 0.0);
border-right: 2px solid alpha(white, 0.5);
}
.right .launcher:active {
border: 2px solid alpha(white, 0.0);
border-right: 2px solid white;
}
.panel-applet {
background-image: none;
border-color: alpha(white, 0.12);
border-radius: 6px;
border: solid alpha(white, 0.1) 1px;
}
.budgie-panel .menu-icon,
.budgie-panel .menu-icon:active,
.budgie-panel .menu-icon:hover {
background-image: none;
}
.budgie-panel * {
color: white;
icon-shadow: 1px 1px alpha(black, 0.5);
}
.notification .priority.low {
background-color: @info;
}
.notification .priority.high {
background-color: @warning;
}
.notification .priority.critical {
background-color: @error;
}

View File

@ -1,164 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color calculator #07ce8e;
/**************
* Header bar *
**************/
PantheonCalculatorMainWindow .titlebar,
PantheonCalculatorMainWindow .header-bar,
MathWindow .titlebar,
MathWindow .header-bar {
background-color: @calculator;
}
PantheonCalculatorMainWindow .titlebar:backdrop,
PantheonCalculatorMainWindow .header-bar:backdrop,
MathWindow .titlebar:backdrop,
MathWindow .header-bar:backdrop {
background-color: shade(@calculator,0.9);
}
/***********
* Buttons *
***********/
MathButtons .button,
MathButtons .button GtkImage,
MathButtons .button.text-button,
MathButtons .button.image-button {
background-color: transparent;
background-image: none;
border: none;
color: @calculator;
font: Bold;
}
MathButtons GtkComboBox,
MathButtons GtkComboBox * {
background-color: transparent;
background-image: none;
border: none;
color: @calculator;
font: Bold;
}
MathButtons GtkComboBox:focus,
MathButtons GtkComboBox *:focus,
MathButtons .button.text-button:focus,
MathButtons .button.image-button:focus,
MathButtons .button:focus {
background-color: transparent;
background-image: none;
color: @calculator;
border: none;
}
MathButtons GtkComboBox:hover,
MathButtons GtkComboBox *:hover,
MathButtons .button.text-button:hover,
MathButtons .button.image-button:hover,
MathButtons .button:hover {
background-color: transparent;
background-image: none;
color: @calculator;
border: none;
}
MathButtons GtkComboBox:active,
MathButtons GtkComboBox *:active,
MathButtons .button.text-button:active,
MathButtons .button.image-button:active,
MathButtons .button:active,
MathButtons GtkComboBox:active:hover,
MathButtons GtkComboBox *:active:hover,
MathButtons .button.text-button:active:hover,
MathButtons .button.image-button:active:hover,
MathButtons .button:active:hover {
background-color: transparent;
background-image: none;
color: @calculator;
border: none;
}
MathButtons GtkComboBox:backdrop,
MathButtons GtkComboBox *:backdrop,
MathButtons .button.text-button:backdrop,
MathButtons .button.image-button:backdrop,
MathButtons .button:backdrop {
background-color: transparent;
background-image: none;
color: shade(@calculator, 0.9);
border: none;
}
MathButtons GtkComboBox:hover,
MathButtons GtkComboBox *:hover,
MathButtons .button.text-button:hover,
MathButtons .button.image-button:hover,
MathButtons .button:hover {
background-color: @calculator;
color: @base;
border: none;
}
/* Images */
MathButtons .button GtkImage {
color: @calculator;
}
MathButtons .button:active GtkImage,
MathButtons .button:focus GtkImage,
MathButtons .button:hover GtkImage {
color: @selection_foreground;
}
MathButtons .button:backdrop GtkImage,
MathButtons .button:backdrop:hover GtkImage,
MathButtons .button:active:backdrop GtkImage {
color: shade(@calculator, 0.9);
-gtk-image-effect: dim;
}
MathButtons .button:insensitive GtkImage {
color: @insensitive_text;
-gtk-image-effect: dim;
}
/* Labels */
MathButtons .button GtkLabel {
color: @calculator;
}
MathButtons .button:active GtkLabel,
MathButtons .button:focus GtkLabel,
MathButtons .button:hover GtkLabel {
color: @selection_foreground;
}
MathButtons .button:backdrop GtkLabel,
MathButtons .button:backdrop:hover GtkLabel,
MathButtons .button:active:backdrop GtkLabel {
color: shade(@calculator, 0.9);
}
MathButtons .button:insensitive GtkLabel {
color: @insensitive_text;
}

View File

@ -1,54 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color calendar #F34235;
/**********
* Header *
**********/
MayaViewMayaToolbar .titlebar .header-bar,
CaliforniaHostMainWindow .header-bar,
CaliforniaHostMainWindow .titlebar {
background-color: @calendar;
}
MayaViewMayaToolbar .titlebar .header-bar:backdrop,
CaliforniaHostMainWindow .header-bar:backdrop,
CaliforniaHostMainWindow .titlebar:backdrop {
background-color: shade(@calendar,0.9);
}
/* Switch */
CaliforniaHostMainWindow .header-bar GtkSwitch.trough:active {
background-color: @calendar;
}
CaliforniaHostMainWindow GtkSwitch.trough:active {
border: 1px solid shade(@calendar, 0.8);
background-color: @calendar;
}
CaliforniaHostMainWindow GtkSwitch.slider:active {
border: 1px solid shade(@calendar, 0.8);
}
CaliforniaHostMainWindow .header-bar GtkSwitch.slider:active:backdrop,
CaliforniaHostMainWindow .header-bar GtkSwitch.slider:backdrop {
background-color: shade(@calendar, 0.9);
}

View File

@ -1,33 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color cheese #ad7fa8;
/**********
* Header *
**********/
CheeseWindow .titlebar,
CheeseWindow .header-bar {
background-color: @cheese;
}
CheeseWindow .titlebar:backdrop,
CheeseWindow .header-bar:backdrop {
background-color: shade(@cheese,0.9);
}

View File

@ -1,94 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color epiphany #6573C3;
/**********
* Header *
**********/
EphyWindow .titlebar,
EphyWindow .header-bar {
background-color: @epiphany;
}
EphyWindow .titlebar:backdrop,
EphyWindow .header-bar:backdrop {
background-color: shade(@epiphany,0.9);
}
/* Switch */
EphyWindow .header-bar GtkSwitch.trough:active {
background-color: @epiphany;
}
EphyWindow GtkSwitch.trough:active {
border: 1px solid shade(@epiphany, 0.8);
background-color: @epiphany;
}
EphyWindow GtkSwitch.slider:active {
border: 1px solid shade(@epiphany, 0.8);
}
EphyWindow .header-bar GtkSwitch.slider:active:backdrop,
EphyWindow .header-bar GtkSwitch.slider:backdrop {
background-color: shade(@epiphany, 0.9);
}
/************
* Notebook *
************/
/* Active */
EphyWindow .notebook tab.top:active,
EphyWindow .dynamic-notebook tab.top:active {
box-shadow:inset 0 -3px 0 0 @epiphany;
}
EphyWindow .notebook tab.bottom:active,
EphyWindow .dynamic-notebook tab.bottom:active {
box-shadow:inset 0 3px 0 0 @epiphany;
}
EphyWindow .notebook tab.left:active,
EphyWindow .dynamic-notebook tab.left:active {
box-shadow:inset -3px 0 0 0 @epiphany;
}
EphyWindow .notebook tab.right:active,
EphyWindow .dynamic-notebook tab.right:active {
box-shadow:inset 3px 0 0 0 @epiphany;
}
/******************
* Incognito Mode *
******************/
EphyWindow .titlebar .incognito-mode,
EphyWindow .header-bar .incognito-mode {
background:none;
background-color: shade(@epiphany, 0.8);
}
.incognito-mode .button {
background-image:none;
}

View File

@ -1,99 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/************
* Fallback *
************/
/* Panel */
PanelWidget,
PanelApplet,
PanelToplevel {
padding: 0;
background-color: #000;
background-image: none;
color: #fff;
}
PanelApplet {
border-width: 0;
}
PanelSeparator {
border-width: 0;
background-image: none;
color: @base;
}
.gnome-panel-menu-bar,
PanelApplet > GtkMenuBar.menubar,
PanelApplet > GtkMenuBar.menubar.menuitem,
PanelMenuBar.menubar,
PanelMenuBar.menubar.menuitem {
-Panelpanel-icon-visible: true;
border-width: 0;
background-color: @panel;
background-image: none;
color: @panel_text;
}
PanelAppletFrame {
border-width: 0;
background-color: @panel;
background-image: none;
}
PanelApplet .button {
-GtkButton-inner-border: 2;
border-width: 0 1px;
border-radius: 0;
border-color: transparent;
background-color: @panel;
background-image: none;
color: @base;
}
PanelApplet .button:active {
border-width: 0 1px;
border-radius: 0;
border-color: mix(@panel, @base, 0.23);
background-color: mix(@panel, @base, 0.21);
background-image: none;
color: shade(@base, 1.08);
}
PanelApplet .button:prelight {
border-color: mix(@panel, @base, 0.13);
background-color: mix(@panel, @base, 0.11);
background-image: none;
color: shade(@base, 1.08);
}
PanelApplet .button:active:prelight {
border-color: mix(@panel, @base, 0.33);
background-color: mix(@panel, @base, 0.31);
background-image: none;
color: shade(@base, 1.08);
}
WnckPager, WnckTasklist {
background-color: @panel;
}

View File

@ -1,65 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color geary #F2B035;
/**********
* Header *
**********/
.geary-titlebar-left, .geary-titlebar-right {
background-color: @geary;
}
.geary-titlebar-left .separator { opacity: 0; }
.geary-titlebar-left:backdrop, .geary-titlebar-right:backdrop {
background-color: shade(@geary, 0.9);
}
/*********************
* Conversation View *
*********************/
ConversationListView .view:active,
ConversationListView .view:selected {
background-color: @selection;
color: @selection_foreground;
}
ConversationListView .view:active:backdrop,
ConversationListView .view:selected:backdrop {
background-color: @backdrop_selection;
color: @backdrop_selection_foreground;
}
ConversationListView {
-GtkWidget-focus-line-width: 1px;
-GtkTreeView-grid-line-width: 0;
}
ConversationListView.view.cell {
border-style: solid;
border-width: 0 0 1px 0;
border-color: alpha(#000, 0.2);
}
ConversationListView.view.cell:selected {
color: @base;
border: 0px solid shade(@selection, 0.8);
}

View File

@ -1,175 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color gedit #DC4836;
/**********
* Header *
**********/
GeditWindow .titlebar,
GeditWindow .header-bar {
background-color: @gedit;
}
GeditWindow .titlebar:backdrop,
GeditWindow .header-bar:backdrop {
background-color: shade(@gedit,0.9);
}
/* Switch */
GeditWindow .header-bar GtkSwitch.trough:active {
background-color: @gedit;
}
GeditWindow GtkSwitch.trough:active {
border: 1px solid shade(@gedit, 0.8);
background-color: @gedit;
}
GeditWindow GtkSwitch.slider:active {
border: 1px solid shade(@gedit, 0.8);
}
GeditWindow .header-bar GtkSwitch.slider:active:backdrop,
GeditWindow .header-bar GtkSwitch.slider:backdrop {
background-color: shade(@gedit, 0.9);
}
/************
* Notebook *
************/
/* Active */
GeditWindow .notebook tab.top:active,
GeditWindow .dynamic-notebook tab.top:active {
box-shadow:inset 0 -3px 0 0 @gedit;
}
GeditWindow .notebook tab.bottom:active,
GeditWindow .dynamic-notebook tab.bottom:active {
box-shadow:inset 0 3px 0 0 @gedit;
}
GeditWindow .notebook tab.left:active,
GeditWindow .dynamic-notebook tab.left:active {
box-shadow:inset -3px 0 0 0 @gedit;
}
GeditWindow .notebook tab.right:active,
GeditWindow .dynamic-notebook tab.right:active {
box-shadow:inset 3px 0 0 0 @gedit;
}
/************
* Etc etc. *
************/
GeditPanel .toolbar {
border-style: none;
background: none;
}
GeditDocumentsPanel .view {
background-color: @background;
}
GeditPanel.vertical .notebook {
padding: 0;
border-width: 1px 0;
}
GeditPanel.horizontal .notebook {
padding: 0;
border-width: 0 1px 1px 0;
}
GeditWindow .notebook {
border-width: 1px 0;
}
GeditPanel .notebook tab,
GeditWindow .notebook tab {
border-width: 0;
}
GeditStatusComboBox .button,
GeditStatusComboBox .button:hover,
GeditStatusComboBox .button:active,
GeditStatusComboBox .button:active:hover {
padding: 1px 6px 2px 4px;
border-style: solid;
border-width: 0 1px;
border-radius: 0;
}
GeditStatusComboBox .button:hover,
GeditStatusComboBox .button:active,
GeditStatusComboBox .button:active:hover {
border-color: shade(@background, 0.8);
}
GeditViewFrame .gedit-search-slider {
padding: 4px;
border-radius: 0 0 2px 2px;
border-width: 0 1px 1px 1px;
border-style: solid;
border-color: shade(@base, 0.8);
background-color: @base;
}
GeditViewFrame .gedit-search-slider .not-found {
background-color: @error_background;
background-image: none;
color: @error_foreground;
}
GeditViewFrame .gedit-search-slider .not-found:selected {
background-color: @selected_background;
color: @selection_foreground;
}
GeditFileBrowserWidget .primary-toolbar.toolbar {
padding: 2px;
border-top: none;
background-color: @background;
background-image: none;
}
GeditWindow .pane-separator {
background: url("../assets/scalable/pane-separator-grip.svg");
background-repeat: no-repeat;
background-position: center;
}
GeditWindow .pane-separator:hover {
background: url("../assets/scalable/pane-separator-grip-prelight.svg");
background-repeat: no-repeat;
background-position: center;
}
GeditWindow .pane-separator.vertical {
background: url("../assets/scalable/pane-separator-grip-vertical.svg");
}
GeditWindow .pane-separator.vertical:hover {
background: url("../assets/scalable/pane-separator-grip-vertical-prelight.svg");
background-repeat: no-repeat;
background-position: center;
}

View File

@ -1,33 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color gnomeCalendar #477ABF;
GcalWindow .titlebar,
GcalWindow .header-bar {
background-color: @gnomeCalendar;
}
GcalWindow .titlebar:backdrop,
GcalWindow .header-bar:backdrop {
background-color: shade(@gnomeCalendar,0.9);
}
.calendar-view * {
border: 1px solid @border;
}

View File

@ -1,251 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color gnomeClocks #4BAE4F;
/**********
* Header *
**********/
ClocksWindow .titlebar,
ClocksWindow .header-bar {
background-color: @gnomeClocks;
}
ClocksWindow .titlebar:backdrop,
ClocksWindow .header-bar:backdrop {
background-color: shade(@gnomeClocks,0.9);
}
/**********
* Frame *
**********/
ClocksWindow > .frame {
background-color: mix(@foreground, @background, 0.95);
box-shadow: inset 0 5px 2px -6px black;
}
ClocksWindow > .frame:backdrop {
background-color: mix(@backdrop_foreground, @backdrop_background, 0.95);
box-shadow: none;
}
ClocksWindow .clocks-tiles-view {
background-color: transparent;
}
ClocksWindow .clocks-digital-renderer {
/*background-color: transparent;*/
color: @text;
}
ClocksWindow .clocks-digital-renderer.stripe {
font-size: 32px;
}
/* world */
ClocksWindow .clocks-digital-renderer.light.stripe {
background-color: rgba(255, 255, 255, 0.4);
color: black;
}
ClocksWindow .clocks-digital-renderer.light.stripe:prelight {
background-color: rgba(255, 255, 255, 0.6);
}
ClocksWindow .clocks-digital-renderer.dark.stripe {
background-color: rgba(0, 0, 0, 0.4);
color: @text;
}
ClocksWindow .clocks-digital-renderer.dark.stripe:prelight {
background-color: rgba(0, 0, 0, 0.2);
}
/* alarms */
ClocksWindow .clocks-digital-renderer.active {
background-color: @selection;
background-image: none;
color: @selection_foreground;
}
ClocksWindow .clocks-digital-renderer.active:prelight {
background-color: @selection;
background-image: none;
text-shadow: 0 2px 2px rgba(0,0,0,0.5);
color: @selection_foreground;
}
ClocksWindow .clocks-digital-renderer.snoozing {
background-color: transparent;
background-image: -gtk-gradient(radial,
center center, 0,
center bottom, 1.0,
from(@warning), to(shade(@warning,0.9)));
color: @text;
}
ClocksWindow .clocks-digital-renderer.snoozing:prelight {
background-color: transparent;
background-image: -gtk-gradient(radial,
center center, 0,
center bottom, 1.0,
from(shade(@warning,1.1)), to(shade(@warning,0.99)));
text-shadow: 0 2px 2px rgba(0,0,0,0.5);
color: @text;
}
ClocksWindow .clocks-digital-renderer.inactive {
background-color: transparent;
background-image: -gtk-gradient(radial,
center center, 0,
center bottom, 1.0,
from(shade(@insensitive_background,0.9)), to(shade(@insensitive_background,0.85)));
color: shade(@insensitive_foreground,0.9);
}
ClocksWindow .clocks-digital-renderer.inactive:prelight {
background-color: transparent;
background-image: -gtk-gradient(radial,
center center, 0,
center bottom, 1.0,
from(shade(@insensitive_background,0.99)), to(shade(@insensitive_background,0.9)));
color: @insensitive_foreground;
}
ClocksWindow .clocks-ampm-toggle-button {
font-size: 18px;
}
ClocksWindow .clocks-digital-renderer.active.stripe,
ClocksWindow .clocks-digital-renderer.snoozing.stripe,
ClocksWindow .clocks-digital-renderer.inactive.stripe {
background-color: transparent;
background-image: none;
}
ClocksWindow .clocks-standalone-label,
ClocksWindow .clocks-ringing-label {
font-size: 64px;
}
ClocksWindow .clocks-secondary-standalone-label {
font-size: 18px;
}
ClocksWindow .clocks-button {
font-size: 14px;
}
ClocksWindow .clocks-alarm-setup-time {
font-size: 32px;
}
ClocksWindow .clocks-spinbutton {
font-size: 48px;
}
ClocksWindow .clocks-stopwatch-label,
ClocksWindow .clocks-timer-label {
font-size: 48px;
color: @text;
}
ClocksWindow .clocks-analog-frame.trough {
color: mix(@foreground, @background, 0.85);
}
ClocksWindow .clocks-analog-frame.progress {
color: mix(@foreground, @background, 0.5);
}
ClocksWindow .clocks-analog-frame.progress-fast {
color: @foreground;
}
ClocksWindow .clocks-laps-panel {
border: 0;
}
ClocksWindow .clocks-laps-panel > .frame:dir(ltr) {
border-image: linear-gradient(to bottom,
mix(@border,@background,0.5))
0 0 0 1 / 20px 0px 20px 1px stretch;
}
ClocksWindow .clocks-laps-panel > .frame:dir(rtl) {
border-image: linear-gradient(to bottom,
mix(@border,@background,0.5))
0 1 0 0 / 20px 1px 20px 0px stretch;
}
ClocksWindow .clocks-laps-panel .list,
ClocksWindow .clocks-laps-panel .list-row {
background-color: transparent;
}
ClocksWindow .clocks-laps-panel .list-row {
padding-left: 20px;
padding-right: 20px;
font-size: 14px;
border-image: linear-gradient(to bottom,
mix(@border,@background,0.5))
0 0 1 0 / 0 20px 1px 20px stretch;
}
ClocksWindow .clocks-laps-panel .first-lap-row {
border-image: none;
border-color: transparent;
}
ClocksWindow .clocks-laps-panel .lap-time {
font-weight: bold;
padding-right: 20px;
}
/* disguise insensitive spinbuttons as normal labels */
ClocksWindow .spinbutton .clocks-timer-label,
ClocksWindow .spinbutton .clocks-timer-label .button {
color: @foreground;
}
ClocksWindow .spinbutton .clocks-timer-label,
ClocksWindow .spinbutton .clocks-timer-label GtkLabel {
color: @foreground;
}
ClocksWindow .spinbutton .clocks-timer-label .button {
color: @foreground;
}
@keyframes clocks-blink {
0% { color: @foreground; }
100% { color: @insensitive_foreground; }
}
ClocksWindow .clocks-paused ClocksWindow .clocks-timer-label,
ClocksWindow .clocks-paused ClocksWindow .clocks-timer-label GtkLabel {
animation-name: clocks-blink;
animation-iteration-count: infinite;
animation-timing-function: cubic-bezier(1.0,0,0,1.0);
animation-duration: 1s;
}

View File

@ -1,53 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color gnomeContacts #2095F2;
/**********
* Header *
**********/
ContactsWindow .titlebar,
ContactsWindow .header-bar {
background-color: @gnomeContacts;
}
ContactsWindow .titlebar:backdrop,
ContactsWindow .header-bar:backdrop {
background-color: shade(@gnomeContacts,0.9);
}
/* Switch */
ContactsWindow .header-bar GtkSwitch.trough:active {
background-color: @gnomeContacts;
}
ContactsWindow GtkSwitch.trough:active {
border: 1px solid shade(@gnomeContacts, 0.8);
background-color: @gnomeContacts;
}
ContactsWindow GtkSwitch.slider:active {
border: 1px solid shade(@gnomeContacts, 0.8);
}
ContactsWindow .header-bar GtkSwitch.slider:active:backdrop,
ContactsWindow .header-bar GtkSwitch.slider:backdrop {
background-color: shade(@gnomeContacts, 0.9);
}

View File

@ -1,43 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color disks #8561C5;
/**********
* Header *
**********/
GduWindow,
GduWindow * {
color: #555555;
}
GduWindow .titlebar,
GduWindow .header-bar {
background-color: @disks;
}
GduWindow .titlebar:backdrop,
GduWindow .header-bar:backdrop {
background-color: shade(@disks,0.9);
}
GduWindow GtkToolbar,
GduWindow .toolbar {
background-color: @disks;
}

View File

@ -1,143 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color gnome-documents #C2352A;
/**********
* Header *
**********/
#Documents .titlebar,
#Documents .header-bar {
background-color: @gnome-documents;
}
#Documents .titlebar:backdrop,
#Documents .header-bar:backdrop {
background-color: shade(@gnome-documents,0.9);
}
/*******************
* GNOME Documents *
*******************/
.documents-dropdown,
.documents-dropdown .view {
background-color: shade (@background, 1.02);
}
.documents-dropdown.frame {
padding: 6px;
border-width: 0 1px 1px 1px;
border-style: solid;
border-radius: 0 0 5px 5px;
}
.documents-dropdown .view.radio,
.documents-dropdown .view.radio:focused,
.documents-dropdown .view.radio:selected {
background-image: none;
background-color: alpha(@base, 0.0);
}
.documents-dropdown .view.radio:active,
.documents-dropdown .view.radio:active:focused,
.documents-dropdown .view.radio:active:prelight {
background-image: url("assets/sidebar-radio-checked.svg");
}
.documents-dropdown .view.radio:prelight {
background-image: url("assets/sidebar-radio-prelight.svg");
}
.documents-dropdown .view.radio:active:selected,
.documents-dropdown .view.radio:active:selected:focused {
background-image: url("assets/sidebar-radio-selected.svg");
}
.documents-dropdown .view.radio:selected:prelight,
.documents-dropdown .view.radio:selected:focused {
background-image: url("assets/sidebar-radio-selected-prelight.svg");
}
.documents-load-more.button {
border-image: none;
border-color: @border;
border-width: 1px 0 0;
border-radius: 0;
}
.documents-scrolledwin.frame {
border-width: 1px 0 0;
border-radius: 0;
}
.documents-icon-bg {
background-color: @documents_emblem_background;
border-radius: 4px;
color: @base;
}
.documents-collection-icon {
background-color: @documents_collection_background;
border-radius: 8px;
}
.documents-counter {
background-image: url('assets/dnd-counter.svg');
background-size: contain;
background: none;
color: @base;
font: bold;
}
.documents-favorite.button:active,
.documents-favorite.button:active:hover {
color: shade(@selected_background, 1.20);
}
.documents-entry-tag {
background-color: @selection;
color: @selection_foreground;
border-radius: 4px;
border-width: 0;
margin: 2px;
padding: 4px;
}
.documents-entry-tag:hover {
background-color: shade(@selection, 1.10);
color: @selection_foreground;
}
.documents-entry-tag.button,
.documents-entry-tag.button:hover,
.documents-entry-tag.button:active,
.documents-entry-tag.button:active:hover {
background: none;
background-image: none;
border-image: none;
border-width: 0;
}
.documents-entry-tag.button:hover {
color: shade(@selection, 2.10);
}

View File

@ -1,172 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color gnomeMusic #fe9700;
@define-color music_topbar_selection_bg_color #eb8e4d;
@define-color music_selection_box_a #8e9c80;
@define-color music_selection_box_b #4f6838;
@define-color music_selection_box_border #3e7b05;
@define-color music_selection_button_a #7fc141;
@define-color music_selection_button_b #47850d;
@define-color music_selection_button_c #4e9a06;
@define-color music_selection_button_dark_a #3b3b3b;
@define-color music_selection_button_dark_b #1c1c1c;
@define-color music_selection_box_dark_border #3e7b05;
/**********
* Header *
**********/
/* Doesn't work despite the unique app name */
gnomemusic+window+Window .titlebar,
gnomemusic+window+Window .header-bar {
background-color: @gnomeMusic;
}
gnomemusic+window+Window .titlebar:backdrop,
gnomemusic+window+Window .header-bar:backdrop {
background-color: shade(@music,0.9);
}
/*********
* Music *
*********/
.cover {
padding-left:24px;
}
.title {
padding-left:24px;
}
.artist-panel-white{
background-color: @background;
}
.artist-panel-white:selected {
background-color: @selection;
}
.artist-panel-dark {
background-color: #282528;
}
.artist-panel-dark:selected{
background-color: #77757A;
}
.playlist-controls-white {
background-color: @background;
}
.playlist-controls-white:selected {
background-color: @selection;
}
.playlist-controls-dark {
background-color: #282528;
}
.playlist-controls-dark:selected {
background-color: #77757A;
}
.playlists-list {
box-shadow: inset 0 -1px @view_separators;
}
.songs-list {
box-shadow: inset 0 -1px shade(@borders, 1.30);
box-shadow: inset 0 1px shade(@borders, 1.30);
background-color: @background;
}
.music-selection-mode {
background-image: -gtk-gradient(linear, left top, left bottom,
from(@music_selection_box_a),
to(@music_selection_box_b));
color: @base;
border: solid @music_selection_box_border;
border-top-width: 1px;
}
.music-selection-mode .button,
.music-selection-mode .button:focus {
background-image: -gtk-gradient(linear, left top, left bottom,
from(@music_selection_button_a),
color-stop(0.83, @music_selection_button_b),
to(@music_selection_button_c));
border: 1px solid @music_selection_box_border;
color: @base;
}
.music-selection-mode .button.dark,
.music-selection-mode .button.dark:focus {
background-image: -gtk-gradient(linear, left top, left bottom,
from(@music_selection_button_dark_a),
to(@music_selection_button_dark_b));
border: 1px solid @music_selection_box_dark_border;
color: @base;
}
.music-selection-mode .button:hover {
background-image: -gtk-gradient(linear, left top, left bottom,
from(shade(@music_selection_button_a, 1.20)),
color-stop(0.83, shade(@music_selection_button_b, 1.10)),
to(shade(@music_selection_button_c, 1.10)));
}
.music-selection-mode .button:active,
.music-selection-mode .button:hover:active {
background-image: -gtk-gradient(linear, left top, left bottom,
from(@music_selection_button_b),
to(shade(@music_selection_button_a, 0.90)));
border: 1px solid @music_selection_box_border;
}
.music-selection-mode .button *:hover {
color: @base;
}
.music-player, .music-topbar {
background-color: @background;
}
.music-albuminfo-artist {
font-size: 15px;
font-weight: bold;
}
.music-albuminfo-album {
font-size: 14px;
font-weight: bold;
color: mix (@foreground, @background, 0.50);
}
.content-view { background-color: @background; }

View File

@ -1,78 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color photos #BA174E;
/**********
* Header *
**********/
PhotosMainWindow .titlebar,
PhotosMainWindow .header-bar {
background-color: @photos;
}
PhotosMainWindow .titlebar:backdrop,
PhotosMainWindow .header-bar:backdrop {
background-color: shade(@photos,0.9);
}
/* Switch */
PhotosMainWindow .header-bar GtkSwitch.trough:active {
background-color: @photos;
}
PhotosMainWindow GtkSwitch.trough:active {
border: 1px solid shade(@photos, 0.8);
background-color: @photos;
}
PhotosMainWindow GtkSwitch.slider:active {
border: 1px solid shade(@photos, 0.8);
}
PhotosMainWindow .header-bar GtkSwitch.slider:active:backdrop,
PhotosMainWindow .header-bar GtkSwitch.slider:backdrop {
background-color: shade(@photos, 0.9);
}
/************
* Notebook *
************/
/* Active */
PhotosMainWindow .notebook tab.top:active,
PhotosMainWindow .dynamic-notebook tab.top:active {
box-shadow:inset 0 -3px 0 0 @photos;
}
PhotosMainWindow .notebook tab.bottom:active,
PhotosMainWindow .dynamic-notebook tab.bottom:active {
box-shadow:inset 0 3px 0 0 @photos;
}
PhotosMainWindow .notebook tab.left:active,
PhotosMainWindow .dynamic-notebook tab.left:active {
box-shadow:inset -3px 0 0 0 @photos;
}
PhotosMainWindow .notebook tab.right:active,
PhotosMainWindow .dynamic-notebook tab.right:active {
box-shadow:inset 3px 0 0 0 @photos;
}

View File

@ -1,49 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color star #E6E663;/* star color */
@define-color gnome-software #1A77C2;
@define-color tag #1A77C2;
@define-color kudo @selection;
#window_software .titlebar,
#window_software .header-bar {
background-color: @gnome-software;
}
#window_software .titlebar:backdrop,
#window_software .header-bar:backdrop {
background-color: shade(@gnome-software,0.9);
}
.app-row-tag.label {
border-radius: 2px;
background-color: @tag;
background: @tag;
border:none;
color: shade(@tag, 0.8);
}
.kudo-label.label {
border-radius: 4px;
background-color: @kudo;
border:1px solid shade(@kudo, 0.8);
color:shade(@kudo, 0.8);;
}

View File

@ -1,33 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color gnome-system-monitor #6fbe72;
/**********
* Header *
**********/
#gnome-system-monitor .titlebar,
#gnome-system-monitor .header-bar {
background-color: @gnome-system-monitor;
}
#gnome-system-monitor .titlebar:backdrop,
#gnome-system-monitor .header-bar:backdrop {
background-color: shade(@gnome-system-monitor,0.9);
}

View File

@ -1,130 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color terminal #dbdee0;
@define-color terminal_background alpha(#002B36, 0.9);
@define-color terminal_text #839495;
@define-color terminal_window #636E73;
@define-color terminal_window_text #dbdee0;
@define-color backdrop_terminal_window_text shade(@terminal_window_text, 0.8);
@define-color insensitive_terminal_window_text shade(@terminal_window_text, 0.95);
/**********
* Header *
**********/
TerminalWindow .titlebar,
TerminalWindow .header-bar {
background-color: @terminal_window;
}
TerminalWindow .titlebar:backdrop,
TerminalWindow .header-bar:backdrop{
background-color: shade(@terminal_window,0.9);
}
/**********
* Screen *
**********/
TerminalScreen,
VteTerminal {
background-color: @terminal_background;
color: @terminal_text;
}
/*************
* Scrollbar *
*************/
TerminalWindow .scrollbar {
background-image: none;
border-style: solid;
border: 1px solid transparent;
-GtkRange-trough-border: 2;
-GtkScrollbar-has-backward-stepper: false;
-GtkScrollbar-has-forward-stepper: false;
-GtkRange-slider-width: 6;
-GtkScrollbar-min-slider-length: 30;
-GtkRange-stepper-spacing: 0;
-GtkRange-trough-under-steppers: 1;
}
/* Slider */
TerminalWindow .scrollbar.slider {
background-color: @terminal_text;
border-radius: 10px;
}
TerminalWindow .scrollbar.slider:hover {
background-color: shade(@terminal_text, 1.1);
background-image: none;
}
TerminalWindow .scrollbar.slider:active.
TerminalWindow .scrollbar.slider:prelight:active {
background-color: shade(@selection, 1.2);
background-image: none;
}
TerminalWindow .scrollbar.slider:insensitive {
background-color: alpha(@insensitive_foreground, 0.2);
}
TerminalWindow .scrollbar.slider:backdrop {
background-color: alpha(@backdrop_foreground, 0.2);
}
TerminalWindow .scrollbar.slider.fine-tune:prelight:active {
background-image: none;
border: 3px solid transparent;
}
/* Troughs */
TerminalWindow .scrollbars-junction, /* the small square between scrollbars!!! */
TerminalWindow .scrollbar.trough {
/*border-radius: 10px;*/
background-image: none;
background: @terminal_background;
border-width: 0;
border-image: none;
}
TerminalWindow .scrollbar.trough:insensitive {
background: none;
border: 3px solid transparent;
}
TerminalWindow .scrollbars-junction:backdrop,
TerminalWindow .scrollbar.trough:backdrop {
background-image: none;
background: @terminal_background;
border-width: 0;
border-radius: 0;
border-image: none;
}
TerminalWindow .scrollbar.trough:insensitive:backdrop {
background-image: none;
background: none;
border-width: 0;
border-radius: 0;
border-image: none;
}

View File

@ -1,37 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/**************
* tweak-tool *
**************/
.tweak {
color: @text;
}
.list-row .tweak:hover {
background-color: @selection;
}
.list-row .tweak:hover GtkLabel {
color: @selection;
}
.tweak-startup {
border:1px solid @border;
}

View File

@ -1,32 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
#conditions-image {
color: #fff;
}
#temperature-label {
color: #fff;
}
#forcast-viewport {
background: alpha(#000,0.7);
border: none;
border-radius: 4px;
color: #fff;
}

View File

@ -1,69 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/***************
* font-viewer *
***************/
SushiFontWidget {
padding: 6px 12px;
}
/**********
* Sudoku *
**********/
SudokuView SudokuCellView {
border: inherit;
background-color: inherit;
}
SudokuView SudokuCellView:backdrop {
border: inherit;
background-color: inherit;
}
SudokuView {
border: none;
}
/*************
* gucharmap *
*************/
GucharmapChartable {
background-color: @base;
}
GucharmapChartable:active,
GucharmapChartable:focus,
GucharmapChartable:selected {
background-color: @selected_background;
color: @selection_foreground;
}
/**************
* GNOME Misc *
*************/
ApDocView, /* Abiword */
EogScrollView, /* Eog */
CheeseThumbView /* Cheese */
{
-EogScrollView-shadow-type: none;
}

View File

@ -1,43 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color logs #009587;
/**********
* Header *
**********/
LogviewWindow .titlebar,
LogviewWindow .header-bar {
background-color: @logs;
}
LogviewWindow .titlebar:backdrop,
LogviewWindow .header-bar:backdrop {
background-color: shade(@logs,0.9);
}
GlWindow .titlebar,
GlWindow .header-bar {
background-color: @logs;
}
GlWindow .titlebar:backdrop,
GlWindow .header-bar:backdrop {
background-color: shade(@logs,0.9);
}

View File

@ -1,58 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color midori #7FC843;
/**********
* Header *
**********/
MidoriBrowser .titlebar,
MidoriBrowser .header-bar {
background-color: @midori;
}
MidoriBrowser .titlebar:backdrop,
MidoriBrowser .header-bar:backdrop {
background-color: shade(@midori,0.9);
}
MidoriBrowser .toolbar.primary-toolbar {
background-color: @midori;
}
MidoriBrowser .toolbar.primary-toolbar:backdrop {
background-color: shade(@midori,0.9);
}
MidoriBrowser .toolbar.primary-toolbar .entry,
MidoriBrowser .toolbar.primary-toolbar .entry:focus {
background-color: @midori;
}
MidoriBrowser .toolbar.primary-toolbar .entry:backdrop,
MidoriBrowser .toolbar.primary-toolbar .entry:backdrop:focus {
background-color: @midori; background-color: shade(@midori,0.9);
}
MidoriBrowser .toolbar.primary-toolbar .toolbar .entry:insensitive:backdrop,
MidoriBrowser .toolbar.primary-toolbar .toolbar .entry:insensitive {
color: @insensitive_header_text;
}

View File

@ -1,235 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color nautilus #636E73;
@define-color disk_space_unknown #888a85;
@define-color disk_space_used #9FB0B9;
@define-color disk_space_free #D8D8D8;
/**********
* Header *
**********/
NautilusWindow .titlebar,
NautilusWindow .header-bar {
border: none;
background-color: @nautilus;
padding:0;
border: none;
border-radius: 0;
background-color: @header;
color: @header_text;
box-shadow: none;
}
NautilusWindow .titlebar {
border-radius: 4px 4px 0 0;
box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.1);
}
NautilusWindow .titlebar:backdrop,
NautilusWindow .header-bar:backdrop {
border: none;
background-color: shade(@nautilus,0.9);
}
NautilusWindow .header-bar GtkSwitch.trough:active {
background-color: @nautilus;
}
NautilusWindow GtkSwitch.trough:active {
border: 1px solid shade(@nautilus, 0.8);
background-color: @nautilus;
}
NautilusWindow GtkSwitch.slider:active {
border: 1px solid shade(@nautilus, 0.8);
}
NautilusWindow .titlebar .entry,
NautilusWindow .header-bar .entry {
box-shadow: none;
}
/***********
* Sidebar *
***********/
NautilusWindow .sidebar,
NautilusWindow .sidebar:backdrop {
box-shadow: none;
border-width: 0px;
}
NautilusWindow .sidebar-row {
background-color: @background;
padding-top: 1px;
padding-bottom: 1px;
}
NautilusWindow .sidebar-row:hover {
background-color: @border;
}
NautilusWindow .sidebar-row:selected GtkGrid {
background-color: @selection;
}
NautilusWindow .sidebar-icon {
padding: 10px;
}
NautilusWindow .sidebar .separator {
color: @separator
}
NautilusWindow .sidebar .separator:backdrop {
color: @backdrop_separator
}
NautilusWindow .pane-separator {
border-color: @border;
border-right-width: 1px;
}
/************
* Notebook *
************/
NautilusWindow .notebook .frame,
NautilusWindow .notebook .frame:backdrop {
border: none;
}
NautilusWindow .notebook tab.top:active,
NautilusWindow .dynamic-notebook tab.top:active {
box-shadow:inset 0 -3px 0 0 @nautilus;
}
NautilusWindow .notebook tab.bottom:active,
NautilusWindow .dynamic-notebook tab.bottom:active {
box-shadow:inset 0 3px 0 0 @nautilus;
}
NautilusWindow .notebook tab.left:active,
NautilusWindow .dynamic-notebook tab.left:active {
box-shadow:inset -3px 0 0 0 @nautilus;
}
NautilusWindow .notebook tab.right:active,
NautilusWindow .dynamic-notebook tab.right:active {
box-shadow:inset 3px 0 0 0 @nautilus;
}
.nautilus-circular-button {
border-radius: 20px;
outline-radius: 20px;
}
.search-bar {
box-shadow: none;
}
.disk-space-display {
border: 2px solid;
}
.disk-space-display.unknown {
background-color: @disk_space_unknown;
border-color: shade(@disk_space_unknown, 0.8);
}
.disk-space-display.used {
background-color: @disk_space_used;
border-color: shade(@disk_space_used, 0.8);
}
.disk-space-display.free {
background-color: @disk_space_free;
border-color: shade(@disk_space_free, 0.8);
}
/******************
* Desktop/Canvas *
******************/
NautilusCanvasView,
NautilusCanvasView:active,
NautilusCanvasView:focus,
NautilusCanvasView:backdrop {
border: none;
}
.nautilus-desktop {
color: @foreground;
}
.nautilus-canvas-item {
border-radius: 5px;
}
.nautilus-canvas-item.dim-label,
.nautilus-list-dim-label,
.nautilus-canvas-item.dim-label:backdrop,
.nautilus-list-dim-label:backdrop {
color: mix(@insensitive_text, @backdrop_text, 0.5);
}
.nautilus-canvas-item.dim-label:selected,
.nautilus-list-dim-label:selected {
color: @selection_foreground;
}
.nautilus-desktop.nautilus-canvas-item {
color: @selection_foreground;
text-shadow: 1px 1px black;
}
.nautilus-desktop.nautilus-canvas-item:active {
color: @text;
}
.nautilus-desktop.nautilus-canvas-item:selected {
color: @selection_foreground;
}
.nautilus-desktop.nautilus-canvas-item:active,
.nautilus-desktop.nautilus-canvas-item:prelight,
.nautilus-desktop.nautilus-canvas-item:selected {
text-shadow: none;
}
.nautilus-desktop.nautilus-canvas-item {
color: #fff;
text-shadow: 1px 1px alpha(#000, 0.2);
}
.nautilus-desktop.nautilus-canvas-item:active,
.nautilus-desktop.nautilus-canvas-item:backdrop
.nautilus-desktop.nautilus-canvas-item:selected {
background-color: @selected_background;
color: @selection_foreground;
}
.nautilus-desktop.nautilus-canvas-item:selected:backdrop {
background-color: @backdrop_selected_background;
color: @backdrop_selection_foreground;
}
.nautilus-desktop.nautilus-canvas-item:active,
.nautilus-desktop.nautilus-canvas-item:prelight,
.nautilus-desktop.nautilus-canvas-item:selected {
}

View File

@ -1,48 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color noise #EE6020;
/**********
* Header *
**********/
NoiseLibraryWindow .titlebar,
NoiseLibraryWindow .header-bar {
background-color: @noise;
}
NoiseLibraryWindow .titlebar:backdrop,
NoiseLibraryWindow .header-bar:backdrop {
background-color: shade(@noise,0.9);
}
NoiseWidgetsTileView {
background-color: @base;
color: @foreground;
}
.tile-view {
background-color: @base;
color: @foreground;
}
NoiseTopDisplay .seek-bar {
background-color: @header;
color: @header_text;
}

View File

@ -1,46 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/********
* Files *
********/
.pathbar .entry:focus,
.marlin-pathbar .pathbar .entry:focus {
padding: 0px;
border-radius: 2px;
background-color: @base;
color: @text;
border: 1px solid @selection;
box-shadow:inset 0 1px 1px 0 alpha(#000, 0.1);
}
.pathbar .entry:active,
.marlin-pathbar .pathbar .entry:active {
padding: 0px;
border-radius: 2px;
background-color: @base;
color: @text;
border: 1px solid @selection;
box-shadow:inset 0 1px 1px 0 alpha(#000, 0.1);
}
.marlin-pathbar,
.marlin-pathbar .pathbar .entry .button.raised {
background-color: red;
color: red;
}

View File

@ -1,39 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color pantheonTerminal #3B4245;
@define-color terminal_background alpha(#002B36, 0.9);
@define-color terminal_text #839495;
@define-color terminal_window #636E73;
@define-color terminal_window_text #dbdee0;
@define-color backdrop_terminal_window_text shade(@terminal_window_text, 0.8);
@define-color insensitive_terminal_window_text shade(@terminal_window_text, 0.95);
/* CSD */
PantheonTerminalPantheonTerminalWindow .csd,
PantheonTerminalPantheonTerminalWindow .dynamic-notebook .notebook.header,
PantheonTerminalPantheonTerminalWindow .dynamic-notebook .notebook tab{
background-color: @pantheonTerminal;
}
PantheonTerminalPantheonTerminalWindow .csd:backdrop,
PantheonTerminalPantheonTerminalWindow .dynamic-notebook .notebook.header:backdrop,
PantheonTerminalPantheonTerminalWindow .dynamic-notebook .notebook tab:backdrop {
background-color: shade(@pantheonTerminal,0.9);
}

View File

@ -1,214 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/********
* Gala *
*******/
.gala-workspaces-background {
border-top: 1px solid alpha(#fff, 0.15);
background-color: #444;
background-image: linear-gradient(to bottom,
alpha(#000, 0.30),
transparent 6px
);
}
.gala-workspace-selected {
border: 1px solid alpha(#000, 0.15);
border-radius: 4px;
background-image: linear-gradient(to bottom,
shade (@selected_background, 1.25),
shade (@selected_background, 0.98)
);
}
.gala-notification {
border-width: 0;
border-radius: 2px;
color: white;
border: 1px solid #fff;
background-color: #fff;
}
.gala-notification .title, .gala-notification .label {
color: @text;
}
.gala-button {
padding: 3px;
color: #fff;
border: none;
border-radius: 100px;
background-image: linear-gradient(to bottom,
#7e7e7e,
#3e3e3e
);
box-shadow: inset 0 0 0 1px alpha (#fff, 0.02),
inset 0 1px 0 0 alpha (#fff, 0.07),
inset 0 -1px 0 0 alpha (#fff, 0.01),
0 0 0 1px alpha (#000, 0.40),
0 3px 6px alpha (#000, 0.16),
0 3px 6px alpha (#000, 0.23);
text-shadow: 0 1px 1px alpha (#000, 0.6);
}
/**********
* Notify *
*********/
.notify {
/*-notify-shadow: 0px 2px 18px alpha(#000, 0.60);*/
border-radius: 5px;
border: 1px solid alpha(#000, 0.30);
background-color: alpha(#f8f8f8, 0.95);
}
.notify .low {
}
.notify .critical {
}
/***************
* SwitchBoard *
***************/
.category-label {
font-weight: bold;
font-size: 1.04em;
color: @foreground;
}
/**********
* Notify *
*********/
.notify {
/*-notify-shadow: 0px 2px 18px alpha(#000, 0.60);*/
border-radius: 5px;
border: 1px solid alpha(#000, 0.30);
background-color: alpha(#f7f7f7, 0.95);
}
.notify .low {
}
.notify .critical {
}
/*************
* Slingshot *
************/
.button.app {
border: none;
border-radius: 0;
box-shadow: none;
background-image: none;
}
.app:hover {
border-radius: 8px;
border: none;
background-color: alpha(@selection, 0.7);
color: white;
}
.app:focus {
/*background-color: alpha(#000, 0.20);*/
}
.search-item {
border-radius: 0;
border: none;
color: @foreground;
background: none;
}
.search-item:hover,
.search-item:focus {
border-radius: 0;
background-color: alpha(@selection, 0.7);
color: @selection_foreground;
}
.search-entry-large,
.search-entry-large:focus {
border: none;
font: 18;
font-weight: 300;
background-image: none;
background: none;
box-shadow: none;
border-radius: 0;
}
.search-category-header {
font-weight: bold;
color: @foreground;
}
/*********
* Panel *
********/
.panel {
background-color: transparent;
transition: all 100ms ease-in-out;
}
.panel.maximized {
background-color: #000;
}
.panel.translucent {
background-color: alpha(#000, 0.5);
}
.composited-indicator > revealer label,
.composited-indicator > revealer image,
.composited-indicator > GtkRevealer {
color: #fff;
font-weight: bold;
text-shadow: 0 0 2px alpha (#000, 0.3),
0 1px 2px alpha (#000, 0.6);
icon-shadow: 0 0 2px alpha (#000, 0.3),
0 1px 2px alpha (#000, 0.6);
}
.panel.color-light .composited-indicator > revealer label,
.panel.color-light .composited-indicator > revealer image,
.panel.color-light .composited-indicator > GtkRevealer {
color: alpha (#000, 0.65);
text-shadow: 0 0 2px alpha (#fff, 0.3),
0 1px 0 alpha (#fff, 0.25);
icon-shadow: 0 0 2px alpha (#fff, 0.3),
0 1px 0 alpha (#fff, 0.25);
}

View File

@ -1,78 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color scratch #e74c3c;
/**********
* Header *
**********/
ScratchMainWindow .titlebar,
ScratchMainWindow .header-bar {
background-color: @scratch;
}
ScratchMainWindow .titlebar:backdrop,
ScratchMainWindow .header-bar:backdrop {
background-color: shade(@scratch,0.9);
}
/* Switch */
ScratchMainWindow .header-bar GtkSwitch.trough:active {
background-color: @scratch;
}
ScratchMainWindow GtkSwitch.trough:active {
border: 1px solid shade(@scratch, 0.8);
background-color: @scratch;
}
ScratchMainWindow GtkSwitch.slider:active {
border: 1px solid shade(@scratch, 0.8);
}
ScratchMainWindow .header-bar GtkSwitch.slider:active:backdrop,
ScratchMainWindow .header-bar GtkSwitch.slider:backdrop {
background-color: shade(@scratch, 0.9);
}
/************
* Notebook *
************/
/* Active */
ScratchMainWindow .notebook tab.top:active,
ScratchMainWindow .dynamic-notebook tab.top:active {
box-shadow:inset 0 -3px 0 0 @scratch;
}
ScratchMainWindow .notebook tab.bottom:active,
ScratchMainWindow .dynamic-notebook tab.bottom:active {
box-shadow:inset 0 3px 0 0 @scratch;
}
ScratchMainWindow .notebook tab.left:active,
ScratchMainWindow .dynamic-notebook tab.left:active {
box-shadow:inset -3px 0 0 0 @scratch;
}
ScratchMainWindow .notebook tab.right:active,
ScratchMainWindow .dynamic-notebook tab.right:active {
box-shadow:inset 3px 0 0 0 @scratch;
}

View File

@ -1,131 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color settings #5F7C8A;
/**********
* Header *
**********/
CcWindow .titlebar,
CcWindow .header-bar {
background-color: @settings;
}
CcWindow .titlebar:backdrop,
CcWindow .header-bar:backdrop {
background-color: shade(@settings,0.9);
}
/*******
* Nav *
*******/
CcShellNavBar {
padding:0px;
}
/************
* ItemView *
************/
CcShellItemView {
background: none;
border:none;
}
CcShellItemView .button {
border:none;
}
/************
* Iconview *
************/
CcWindow GtkIconView.view.cell {
border: none;
}
CcWindow GtkIconView.view.cell:hover {
border: 1px solid @settings;
background-color: alpha(@settings,0.4);
color: @settings;
}
CcWindow GtkIconView.view.cell:selected,
CcWindow GtkIconView.view.cell:selected:focus {
border: 1px solid @settings;
background-color: @settings;
}
/************
* Notebook *
************/
/* Active */
CcWindow .notebook tab.top:active,
CcWindow .dynamic-notebook tab.top:active {
box-shadow:inset 0 -3px 0 0 @settings;
}
CcWindow .notebook tab.bottom:active,
CcWindow .dynamic-notebook tab.bottom:active {
box-shadow:inset 0 3px 0 0 @settings;
}
CcWindow .notebook tab.left:active,
CcWindow .dynamic-notebook tab.left:active {
box-shadow:inset -3px 0 0 0 @settings;
}
CcWindow .notebook tab.right:active,
CcWindow .dynamic-notebook tab.right:active {
box-shadow:inset 3px 0 0 0 @settings;
}
/* List Row Button */
CcWindow .button.list-row {
}
CcWindow .button.list-row:hover {
background-color: alpha(@settings, 0.2);
color: @settings;
}
CcWindow .button.list-row:active,
CcWindow .button.list-row:selected {
background-color: alpha(@settings, 0.4);
color: @settings;
}
CcWindow .button.list-row:active:selected,
CcWindow .button.list-row:active:selected:hover {
background-color: alpha(@settings, 0.2);
color: @settings;
}
CcWindow .button.list-row:hover:selected {
background-color: alpha(@settings, 0.2);
color: @settings;
}
CcNetworkPanel GtkNotebook > .frame {
border: none;
}

View File

@ -1,49 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color shotwell #66416A;
/**********
* Header *
**********/
/* Library */
LibraryWindow .titlebar,
LibraryWindow .header-bar {
background-color: @shotwell;
}
LibraryWindow .titlebar:backdrop,
LibraryWindow .header-bar:backdrop {
background-color: shade(@shotwell,0.9);
}
/* Viewer */
DirectWindow .titlebar,
DirectWindow .header-bar {
background-color: @shotwell;
}
DirectWindow .titlebar:backdrop,
DirectWindow .header-bar:backdrop {
background-color: shade(@shotwell,0.9);
}
.the-button-in-the-combobox {
background: none;
}

View File

@ -1,46 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color snap #6d266a;
@define-color snap_background #434343;
/**********
* Header *
**********/
SnapSnapWindow .titlebar,
SnapSnapWindow .header-bar {
background-color: @snap;
}
SnapSnapWindow .titlebar:backdrop,
SnapSnapWindow .header-bar:backdrop {
background-color: shade(@snap,0.9);
}
SnapSnapWindow .take-button {
border-radius: 0;
}
SnapWidgetsCamera {
background-color:@snap_background;
}
SnapWidgetsCamera:backdrop {
background-color:shade(@snap_background, 0.9);
}

View File

@ -1,31 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/********************
* Synaptic Toolbar *
********************/
.dock {
background-color:@toolbar;
color:@toolbar_text;
}
.dock:backdrop {
background-color:@backdrop_toolbar;
color:@backdrop_toolbar_text;
}

View File

@ -1,206 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/****************
* Unity Colors *
****************/
@define-color unity #636E73; /* Unity window border color */
@define-color backdrop_unity #5A6367; /* Backdrop Unity window border color */
@define-color unity_text #dbdee0; /* Unity window text color */
@define-color backdrop_unity_text #909598; /* Backdrop Unity window text color */
@define-color unity_panel shade(@unity, 0.8); /* Unity panel color #454D50 */
@define-color backdrop_unity_panel shade(@unity_panel, 1.05); /* Backdrop Unity panel color */
@define-color unity_panel_text #dbdee0; /* Unity panel text color */
@define-color backdrop_unity_panel_text shade(@unity_panel_text, 0.95); /* Backdrop Unity panel text color */
/*********************
* Unity Decorations *
*********************/
UnityDecoration {
/* Border properties (top, right, bottom, left) */
-UnityDecoration-extents: 28px 1px 1px 1px;/* the size of the decorations */
-UnityDecoration-input-extents: 10px;/* the extra size of the input areas */
/* Shadows settings */
-UnityDecoration-shadow-offset-x: 1px;/* Size property, the shadow x offset */
-UnityDecoration-shadow-offset-y: 1px;/* Size property, the shadow y offset */
-UnityDecoration-active-shadow-color: rgba (0, 0, 0, 0.647);/* Color property, active window shadow color */
-UnityDecoration-active-shadow-radius: 8px;/* Size property, active window shadow radius */
-UnityDecoration-inactive-shadow-color: rgba (0, 0, 0, 0.647);/* Color property, inactive windows shadow color */
-UnityDecoration-inactive-shadow-radius: 5px;/* Size property, inactive windows shadow radius */
/* Glow applied to the selected scaled window */
-UnityDecoration-glow-size: 8px;/* Size property, size of glow */
-UnityDecoration-glow-color: @selection;/* Color property of the glow */
/* Title settings */
-UnityDecoration-title-indent: 10px;/* Size property, left indent of the title */
-UnityDecoration-title-fade: 35px;/* Size property, space of the title that can be faded */
-UnityDecoration-title-alignment: 0.0;/* Float from 0.0 to 1.0, to align the title */
background-color: @unity;
color: @unity_text;
}
UnityDecoration.top {
padding: 0 5px 0 5px;
border-radius: 4px 4px 0px 0px;
box-shadow: none;
border: 1px solid @unity;
border-bottom-width: 0;
background-color: @unity;
color: @unity_text;
border-top: 1px solid rgba(255,255,255,0.1);
}
UnityDecoration.top.menuitem {
color: @unity_text;
}
UnityDecoration.top.menuitem:backdrop {
background-color: @backdrop_unity;
color: @backdrop_unity_text;
}
UnityDecoration.top:backdrop {
/*border: 1px solid @backdrop_unity;*/
border-bottom-width: 0;
background-color: @backdrop_unity;
color: @backdrop_unity_text;
border-top: 1px solid rgba(255,255,255,0.1);
}
UnityDecoration.left,
UnityDecoration.right {
background-repeat: repeat-x;
background-color: shade(@unity, 0.6);
background-size: 1px 120px;
background-clip: border-box;
background-image: linear-gradient(to bottom,
@unity,
shade(@unity, 0.6)
);
background-image: -gtk-gradient (linear, left top, left bottom,
color-stop (0, @unity),
color-stop (0.5, @unity),
color-stop (1, shade(@unity, 0.6)));
}
UnityDecoration.bottom {
background-size: 1px;
background-repeat: repeat-x;
background-color: shade(@unity, 0.6);
}
UnityDecoration.left:backdrop,
UnityDecoration.right:backdrop,
UnityDecoration.bottom:backdrop {
background-size: 1px;
background-repeat: repeat-x;
background-color: @backdrop_unity;
}
/***************
* Unity Panel *
***************/
UnityPanelWidget,
.unity-panel {
background-color: @unity_panel;
color: @unity_panel_text;
}
UnityPanelWidget:backdrop,
.unity-panel:backdrop {
background-color: @backdrop_unity_panel;
color: @backdrop_unity_panel_text;
}
.unity-panel.menuitem,
.unity-panel .menuitem {
border-width: 0 1px;
color: @unity_panel_text;
}
.unity-panel.menubar,
.unity-panel .menubar {
color: @unity_panel_text;
}
.unity-panel.menu.menubar,
.unity-panel .menu .menubar {
background-color: @unity_panel;
color: @unity_panel_text;
}
.unity-panel.menubar:backdrop,
.unity-panel .menubar *:backdrop {
color: @backdrop_foreground;
}
.unity-panel.menubar.menuitem,
.unity-panel.menubar .menuitem {
padding: 3px 5px;
border-width: 1px;
border-style: solid;
border: none;
background: none;
color: @unity_panel_text;
box-shadow: none;
}
.unity-panel.menubar.menuitem:hover,
.unity-panel.menubar .menuitem:hover {
border-radius: 0;
background-color: shade(@unity, 1.05);
color: @unity_panel_text;
box-shadow: none;
}
.unity-panel.menubar .menuitem *:hover {
color: white;
box-shadow: none;
}
.unity-panel.menubar .menuitem.separator,
.unity-panel.menubar.menuitem.separator {
-GtkMenuItem-horizontal-padding: 0;
-GtkWidget-separator-height: 1;
border: none;
color: @separator;
}
/* Force Quit */
SheetStyleDialog.unity-force-quit {
background-color: @base;
}
@keyframes playbackmenuitem_spinner {
to { -gtk-icon-transform: rotate(1turn); }
}
.menu IdoPlaybackMenuItem.menuitem:active {
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
animation: playbackmenuitem_spinner 1s infinite linear;
color: @selected_background;
}

View File

@ -1,33 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color vocal #B286D7;
/**********
* Header *
**********/
.titlebar.vocal-headerbar,
.header-bar.vocal-headerbar {
background-color: @vocal;
}
.titlebar.vocal-headerbar:backdrop,
.header-bar.vocal-headerbar:backdrop {
background-color: shade(@vocal,0.9);
}

View File

@ -1,68 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
/********
* Xfce *
********/
XfceHeading,
.XfceHeading {
margin: 0;
padding: 0;
border-width: 0;
background-image: none;
background-color: @theme_base_color;
color: @theme_text_color;
}
.xfce4-panel {
background-color: @panel_bg_color;
color: @panel_fg_color;
font: normal;
}
.xfce4-panel .button {
padding: 0 2px;
border-radius: 0;
border-style: none;
color: @panel_fg_color;
box-shadow: none;
-gtk-image-effect: none;
}
.xfce4-panel .button:active {
background-color: shade(@panel_bg_color, 0.9);
background-image: none;
border: none;
color: @panel_fg_color;
box-shadow: none;
}
.xfce4-panel .button:hover,
.xfce4-panel .button:active:hover {
background-color: shade(@panel_bg_color, 1.3);
background-image: none;
border: none;
color: @panel_fg_color;
box-shadow: none;
}
.xfce4-panel .menu {
-gtk-image-effect: none;
}

View File

@ -1,33 +0,0 @@
/* Copyright 2016 Sam Hewitt.
*
* This file is part of the Paper GTK theme.
*
* The Paper GTK theme is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Paper GTK theme is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/
@define-color yelp #435ece;
/**********
* Header *
**********/
YelpWindow .titlebar,
YelpWindow .header-bar {
background-color: @yelp;
}
YelpWindow .titlebar:backdrop,
YelpWindow .header-bar:backdrop {
background-color: shade(@yelp,0.9);
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 656 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 460 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 718 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 458 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 458 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 458 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 441 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 B

View File

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="bullet-symbolic.svg"
inkscape:export-filename="/home/sam/dev/RESOURCES/gnome-icon-theme-symbolic/src/gnome-stencils.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
height="14"
id="svg7384"
version="1.1"
inkscape:version="0.91 r13725"
width="14">
<metadata
id="metadata90">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Gnome Symbolic Icon Theme</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
inkscape:bbox-nodes="true"
inkscape:bbox-paths="true"
bordercolor="#666666"
borderopacity="1"
inkscape:current-layer="layer9"
inkscape:cx="9.6493349"
inkscape:cy="5.5864571"
gridtolerance="10"
inkscape:guide-bbox="true"
guidetolerance="10"
id="namedview88"
inkscape:object-nodes="true"
inkscape:object-paths="false"
objecttolerance="10"
pagecolor="#3a3b39"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
showborder="true"
showgrid="false"
showguides="true"
inkscape:snap-bbox="true"
inkscape:snap-bbox-midpoints="false"
inkscape:snap-global="true"
inkscape:snap-grids="true"
inkscape:snap-nodes="false"
inkscape:snap-others="false"
inkscape:snap-to-guides="true"
inkscape:window-height="1016"
inkscape:window-maximized="1"
inkscape:window-width="1920"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:zoom="22.005438"
inkscape:showpageshadow="false">
<inkscape:grid
dotted="false"
empspacing="2"
enabled="true"
id="grid4866"
originx="-139.99995"
originy="120"
snapvisiblegridlinesonly="true"
spacingx="1px"
spacingy="1px"
type="xygrid"
visible="true" />
</sodipodi:namedview>
<title
id="title9167">Gnome Symbolic Icon Theme</title>
<defs
id="defs7386">
<linearGradient
gradientTransform="matrix(-2.7365795,0.28202934,-0.18908311,-0.99988321,239.54008,-879.45557)"
id="linearGradient19282"
osb:paint="solid">
<stop
id="stop19284"
offset="0"
style="stop-color:#666666;stop-opacity:1;" />
</linearGradient>
</defs>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="status"
style="display:inline"
transform="translate(-381.00015,-339)">
<path
inkscape:connector-curvature="0"
d="m 388.00015,343.01754 c -1.64587,0 -2.98246,1.33658 -2.98246,2.98246 0,1.64587 1.33659,2.98246 2.98246,2.98246 1.64587,0 2.98246,-1.33659 2.98246,-2.98246 0,-1.64588 -1.33659,-2.98246 -2.98246,-2.98246 z"
id="path9555"
sodipodi:nodetypes="csssc"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';text-indent:0pt;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78125;marker:none" />
</g>
<g
inkscape:groupmode="layer"
id="layer10"
inkscape:label="devices"
style="display:inline"
transform="translate(-381.00015,-339)" />
<g
inkscape:groupmode="layer"
id="layer11"
inkscape:label="apps"
transform="translate(-381.00015,-339)" />
<g
inkscape:groupmode="layer"
id="layer13"
inkscape:label="places"
style="display:inline"
transform="translate(-381.00015,-339)" />
<g
inkscape:groupmode="layer"
id="layer14"
inkscape:label="mimetypes"
transform="translate(-381.00015,-339)" />
<g
inkscape:groupmode="layer"
id="layer15"
inkscape:label="emblems"
style="display:inline"
transform="translate(-381.00015,-339)" />
<g
inkscape:groupmode="layer"
id="g71291"
inkscape:label="emotes"
style="display:inline"
transform="translate(-381.00015,-339)" />
<g
inkscape:groupmode="layer"
id="g4953"
inkscape:label="categories"
style="display:inline"
transform="translate(-381.00015,-339)" />
<g
inkscape:groupmode="layer"
id="layer12"
inkscape:label="actions"
style="display:inline"
transform="translate(-381.00015,-339)" />
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -1,147 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="16"
height="16"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="spinner-01.svg">
<defs
id="defs11">
<linearGradient
id="linearGradient3852">
<stop
id="stop3854"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3856"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3846">
<stop
id="stop3848"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3850"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3768">
<stop
style="stop-color:#EEEEEE;stop-opacity:1;"
offset="0"
id="stop3770" />
<stop
style="stop-color:#EEEEEE;stop-opacity:0;"
offset="1"
id="stop3772" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3780"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3787"
gradientUnits="userSpaceOnUse"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3852"
id="linearGradient3842"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3846"
id="linearGradient3844"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125" />
</defs>
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0.43529412"
inkscape:pageshadow="2"
inkscape:window-width="1364"
inkscape:window-height="701"
id="namedview9"
showgrid="false"
showborder="true"
inkscape:zoom="5.6568542"
inkscape:cx="19.703677"
inkscape:cy="27.967352"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2988"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata25">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="g3792"
transform="translate(-4,-4)">
<path
id="path2990"
d="m 12,4 c -4.4064334,0 -8,3.5935666 -8,8 0,4.406433 3.5935666,8 8,8 l 0,-2 C 8.6744469,18 6,15.325553 6,12 6,8.6744469 8.6744469,6 12,6 12.552285,6 13,5.5522847 13,5 13,4.4477153 12.552285,4 12,4 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3780);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3787);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
d="m 12,4 c 4.406433,0 8,3.5935666 8,8 0,4.406433 -3.593567,8 -8,8 l 0,-2 c 3.325553,0 6,-2.674447 6,-6 0,-3.3255531 -2.674447,-6 -6,-6 z"
id="path3785" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -1,147 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="16"
height="16"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="spinner-01.svg">
<defs
id="defs11">
<linearGradient
id="linearGradient3852">
<stop
id="stop3854"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3856"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3846">
<stop
id="stop3848"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3850"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3768">
<stop
style="stop-color:#9FB0B9;stop-opacity:1;"
offset="0"
id="stop3770" />
<stop
style="stop-color:#9FB0B9;stop-opacity:0;"
offset="1"
id="stop3772" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3780"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3787"
gradientUnits="userSpaceOnUse"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3852"
id="linearGradient3842"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3846"
id="linearGradient3844"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125" />
</defs>
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0.43529412"
inkscape:pageshadow="2"
inkscape:window-width="1364"
inkscape:window-height="701"
id="namedview9"
showgrid="false"
showborder="true"
inkscape:zoom="5.6568542"
inkscape:cx="19.703677"
inkscape:cy="27.967352"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2988"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata25">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="g3792"
transform="translate(-4,-4)">
<path
id="path2990"
d="m 12,4 c -4.4064334,0 -8,3.5935666 -8,8 0,4.406433 3.5935666,8 8,8 l 0,-2 C 8.6744469,18 6,15.325553 6,12 6,8.6744469 8.6744469,6 12,6 12.552285,6 13,5.5522847 13,5 13,4.4477153 12.552285,4 12,4 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3780);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3787);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
d="m 12,4 c 4.406433,0 8,3.5935666 8,8 0,4.406433 -3.593567,8 -8,8 l 0,-2 c 3.325553,0 6,-2.674447 6,-6 0,-3.3255531 -2.674447,-6 -6,-6 z"
id="path3785" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -1,147 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="16"
height="16"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="spinner-0.svg">
<defs
id="defs11">
<linearGradient
id="linearGradient3852">
<stop
id="stop3854"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3856"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3846">
<stop
id="stop3848"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3850"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3768">
<stop
style="stop-color:#EEEEEE;stop-opacity:1;"
offset="0"
id="stop3770" />
<stop
style="stop-color:#EEEEEE;stop-opacity:0;"
offset="1"
id="stop3772" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3780"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3787"
gradientUnits="userSpaceOnUse"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3852"
id="linearGradient3842"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3846"
id="linearGradient3844"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125" />
</defs>
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0.43529412"
inkscape:pageshadow="2"
inkscape:window-width="1364"
inkscape:window-height="701"
id="namedview9"
showgrid="false"
showborder="true"
inkscape:zoom="5.6568542"
inkscape:cx="-9.6412547"
inkscape:cy="27.967352"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2988"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata25">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="g3792"
transform="matrix(0.95105652,0.30901699,-0.30901699,0.95105652,0.29552574,-7.1208821)">
<path
id="path2990"
d="m 12,4 c -4.4064334,0 -8,3.5935666 -8,8 0,4.406433 3.5935666,8 8,8 l 0,-2 C 8.6744469,18 6,15.325553 6,12 6,8.6744469 8.6744469,6 12,6 12.552285,6 13,5.5522847 13,5 13,4.4477153 12.552285,4 12,4 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3780);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3787);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
d="m 12,4 c 4.406433,0 8,3.5935666 8,8 0,4.406433 -3.593567,8 -8,8 l 0,-2 c 3.325553,0 6,-2.674447 6,-6 0,-3.3255531 -2.674447,-6 -6,-6 z"
id="path3785" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,147 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="16"
height="16"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="spinner-0.svg">
<defs
id="defs11">
<linearGradient
id="linearGradient3852">
<stop
id="stop3854"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3856"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3846">
<stop
id="stop3848"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3850"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3768">
<stop
style="stop-color:#9FB0B9;stop-opacity:1;"
offset="0"
id="stop3770" />
<stop
style="stop-color:#9FB0B9;stop-opacity:0;"
offset="1"
id="stop3772" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3780"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3787"
gradientUnits="userSpaceOnUse"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3852"
id="linearGradient3842"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3846"
id="linearGradient3844"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125" />
</defs>
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0.43529412"
inkscape:pageshadow="2"
inkscape:window-width="1364"
inkscape:window-height="701"
id="namedview9"
showgrid="false"
showborder="true"
inkscape:zoom="5.6568542"
inkscape:cx="-9.6412547"
inkscape:cy="27.967352"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2988"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata25">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="g3792"
transform="matrix(0.95105652,0.30901699,-0.30901699,0.95105652,0.29552574,-7.1208821)">
<path
id="path2990"
d="m 12,4 c -4.4064334,0 -8,3.5935666 -8,8 0,4.406433 3.5935666,8 8,8 l 0,-2 C 8.6744469,18 6,15.325553 6,12 6,8.6744469 8.6744469,6 12,6 12.552285,6 13,5.5522847 13,5 13,4.4477153 12.552285,4 12,4 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3780);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3787);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
d="m 12,4 c 4.406433,0 8,3.5935666 8,8 0,4.406433 -3.593567,8 -8,8 l 0,-2 c 3.325553,0 6,-2.674447 6,-6 0,-3.3255531 -2.674447,-6 -6,-6 z"
id="path3785" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,147 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="16"
height="16"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="spinner-02.svg">
<defs
id="defs11">
<linearGradient
id="linearGradient3852">
<stop
id="stop3854"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3856"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3846">
<stop
id="stop3848"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop3850"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient3768">
<stop
style="stop-color:#EEEEEE;stop-opacity:1;"
offset="0"
id="stop3770" />
<stop
style="stop-color:#EEEEEE;stop-opacity:0;"
offset="1"
id="stop3772" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3780"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3768"
id="linearGradient3787"
gradientUnits="userSpaceOnUse"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3852"
id="linearGradient3842"
gradientUnits="userSpaceOnUse"
x1="12"
y1="6"
x2="23"
y2="10" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3846"
id="linearGradient3844"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,23.875,-0.125)"
x1="5.875"
y1="31.125"
x2="5.875"
y2="4.125" />
</defs>
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0.43529412"
inkscape:pageshadow="2"
inkscape:window-width="1364"
inkscape:window-height="701"
id="namedview9"
showgrid="false"
showborder="true"
inkscape:zoom="5.6568542"
inkscape:cx="-9.6412547"
inkscape:cy="27.967352"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2988"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata25">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="g3792"
transform="matrix(0.809017,0.58778525,-0.58778525,0.809017,5.3452191,-8.761627)">
<path
id="path2990"
d="m 12,4 c -4.4064334,0 -8,3.5935666 -8,8 0,4.406433 3.5935666,8 8,8 l 0,-2 C 8.6744469,18 6,15.325553 6,12 6,8.6744469 8.6744469,6 12,6 12.552285,6 13,5.5522847 13,5 13,4.4477153 12.552285,4 12,4 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3780);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3787);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
d="m 12,4 c 4.406433,0 8,3.5935666 8,8 0,4.406433 -3.593567,8 -8,8 l 0,-2 c 3.325553,0 6,-2.674447 6,-6 0,-3.3255531 -2.674447,-6 -6,-6 z"
id="path3785" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

Some files were not shown because too many files have changed in this diff Show More