Updated things.
This commit is contained in:
parent
b589e3553c
commit
854a5ec87c
@ -10,8 +10,8 @@ style "ff-default" {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#widget "MozillaGtkWidget*Scrollbar*" style "scrollbar"
|
widget "MozillaGtkWidget*GtkScrollbar*" style "scrollbar"
|
||||||
#widget "MozillaGtkWidget*Toolbar*" style "toolbar"
|
widget "MozillaGtkWidget*Toolbar*" style "toolbar"
|
||||||
#widget "MozillaGtkWidget*Statusbar*" style "ff-statusbar"
|
#widget "MozillaGtkWidget*Statusbar*" style "ff-statusbar"
|
||||||
|
|
||||||
widget "MozillaGtkWidget*" style "ff-default"
|
widget "MozillaGtkWidget*" style "ff-default"
|
||||||
|
@ -72,6 +72,7 @@
|
|||||||
@import url("widgets/color-chooser.css");
|
@import url("widgets/color-chooser.css");
|
||||||
@import url("widgets/column-header.css");
|
@import url("widgets/column-header.css");
|
||||||
@import url("widgets/combobox.css");
|
@import url("widgets/combobox.css");
|
||||||
|
@import url("widgets/cursor-handles.css");
|
||||||
@import url("widgets/destructive-action-buttons.css");
|
@import url("widgets/destructive-action-buttons.css");
|
||||||
@import url("widgets/dialogs.css");
|
@import url("widgets/dialogs.css");
|
||||||
@import url("widgets/dynamic-notebook.css");
|
@import url("widgets/dynamic-notebook.css");
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright 2014 Sam Hewitt.
|
m/* Copyright 2014 Sam Hewitt.
|
||||||
*
|
*
|
||||||
* This file is part of the Paper GTK theme.
|
* This file is part of the Paper GTK theme.
|
||||||
*
|
*
|
||||||
|
39
Paper/gtk-3.0/widgets/cursor-handles.css
Normal file
39
Paper/gtk-3.0/widgets/cursor-handles.css
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/* Copyright 2014 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/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/******************
|
||||||
|
* Cursor Handles *
|
||||||
|
******************/
|
||||||
|
|
||||||
|
.entry.cursor-handle,
|
||||||
|
.cursor-handle {
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: none;
|
||||||
|
box-shadow: none;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entry.cursor-handle.top,
|
||||||
|
.cursor-handle.top {
|
||||||
|
-gtk-icon-source: -gtk-icontheme("selection-start-symbolic");
|
||||||
|
}
|
||||||
|
|
||||||
|
.entry.cursor-handle.bottom,
|
||||||
|
.cursor-handle.bottom {
|
||||||
|
-gtk-icon-source: -gtk-icontheme("selection-end-symbolic");
|
||||||
|
}
|
@ -40,8 +40,9 @@
|
|||||||
box-shadow:none;
|
box-shadow:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry:selected {
|
.entry:selected,
|
||||||
color: @text;
|
.entry:selected:focus {
|
||||||
|
color: @base;
|
||||||
background-color: @selection;
|
background-color: @selection;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,14 +107,18 @@
|
|||||||
color: @insensitive_text;
|
color: @insensitive_text;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Arrow color */
|
/* Arrows */
|
||||||
.menuitem.arrow,
|
|
||||||
.menu .menuitem.arrow {
|
.menu .menuitem.arrow {
|
||||||
background-color: @base;
|
color: @text;
|
||||||
color: @foreground;
|
|
||||||
border: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu .menuitem.arrow {
|
||||||
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
|
||||||
|
}
|
||||||
|
.menu .menuitem.arrow:dir(rtl) {
|
||||||
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
|
||||||
|
}
|
||||||
/* Separator color */
|
/* Separator color */
|
||||||
.menuitem.separator {
|
.menuitem.separator {
|
||||||
padding-left: 2px;
|
padding-left: 2px;
|
||||||
|
@ -178,6 +178,14 @@
|
|||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search-bar .entry:selected,
|
||||||
|
.search-bar.toolbar .entry:selected
|
||||||
|
.search-bar .entry:selected:focus,
|
||||||
|
.search-bar.toolbar .entry:selected:focus {
|
||||||
|
color: @base;
|
||||||
|
background-color: @selection;
|
||||||
|
}
|
||||||
|
|
||||||
.search-bar .entry:active,
|
.search-bar .entry:active,
|
||||||
.search-bar .entry:focus,
|
.search-bar .entry:focus,
|
||||||
.search-bar.toolbar .entry:active,
|
.search-bar.toolbar .entry:active,
|
||||||
|
@ -42,7 +42,11 @@
|
|||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selection-mode.header-bar {
|
.titlebar.selection-mode .selection-menu .arrow,
|
||||||
|
.header-bar.selection-mode .selection-menu .arrow {
|
||||||
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
||||||
|
color: alpha(@header_text, 0.5);
|
||||||
|
icon-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selection-mode.toolbar {
|
.selection-mode.toolbar {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user