some fixes and additions

This commit is contained in:
Sam Hewitt
2016-04-18 12:47:20 -04:00
parent 03f0ed663d
commit 30cdb220a1
12 changed files with 1318 additions and 989 deletions

View File

@@ -0,0 +1,102 @@
/**********
* Budgie *
**********/
.budgie-panel {
background-color: transparentize(black, 0.2);
transition: 100ms ease-in;
font:bold;
color: white;
.top {
border-bottom: 1px solid transparentize(white, 0.8);
}
.bottom {
border-top: 1px solid transparentize(white, 0.8);
}
.left {
border-right: 1px solid transparentize(white, 0.8);
}
.right {
border-left: 1px solid transparentize(white, 0.8);
}
}
.max-budgie-panel {
background-color: transparentize(black, 0.0);
transition: 100ms ease-in;
font:bold;
color: white;
.top {
border-bottom: 1px solid transparentize(white, 0.8);
}
.bottom {
border-top: 1px solid transparentize(white, 0.8);
}
.left {
border-right: 1px solid transparentize(white, 0.8);
}
.right {
border-left: 1px solid transparentize(white, 0.8);
}
}
.budgie-panel .message-area {
}
.budgie-panel .max-message-area {
}
.budgie-panel .launcher,
PanelToplevel .launcher {
}
.budgie-panel .launcher:hover,
PanelToplevel .launcher:hover {
}
.budgie-panel .launcher:active,
PanelToplevel .launcher:active {
}
/* Top launchers */
.top .launcher:hover {
}
.top .launcher:active {
}
/* Left hand side launchers */
.left .launcher:hover {
}
.left .launcher:active {
}
/* Right hand side launchers */
.right .launcher:hover {
}
.right .launcher:active {
}
.panel-applet {
}
.budgie-panel .menu-icon,
.budgie-panel .menu-icon:active,
.budgie-panel .menu-icon:hover {
}
.notification .priority.low {
background-color: $info_color;
}
.notification .priority.high {
background-color: $warning_color;
}
.notification .priority.critical {
background-color: $error_color;
}

View File

@@ -0,0 +1,115 @@
/***********
* LightDm *
***********/
// the panel widget at the top
#panel_window {
background-color: $panel_bg_color;
color: $panel_fg_color;
font: bold;
box-shadow: inset 0 -1px darken($panel_bg_color, 7%);
// the menubars/menus of the panel, i.e. indicators
.menubar,
.menubar > .menuitem
menubar,
menubar > menuitem {
background-color: transparent;
color: $panel_fg_color;
font: bold;
}
.menubar .menuitem:insensitive,
menubar menuitem:disabled {
color: transparentize($panel_fg_color, 0.5);
GtkLabel { color: inherit; }
label { color: inherit; }
}
.menubar .menu > .menuitem,
menubar menu > menuitem { font: normal; }
}
// the login window
#login_window,
#shutdown_dialog,
#restart_dialog {
font: normal;
border-style: none;
background-color: transparent;
color: $fg_color;
}
// the top half of the login-window, in GtkDialog terms, the content
#content_frame {
padding-bottom: 14px;
background-color: $bg_color;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border: solid transparentize(black, 0.9);
border-width: 1px 1px 0 1px;
}
#content_frame button {
@include button(normal);
&:hover { @include button(hover); }
&:active, &:checked { @include button(active); }
&:disabled { @include button(insensitive); }
}
// the lower half of the login-window, in GtkDialog terms the buttonbox or action area
#buttonbox_frame {
padding-top: 20px;
padding-bottom: 0px;
border-style: none;
background-color: if($variant=='light', $osd_bg_color, $headerbar_bg_color);
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
border: solid transparentize(black, 0.9);
border-width: 0 1px 1px 1px;
}
#buttonbox_frame button{
@include button(osd);
&:hover { @include button(osd-hover); }
&:active, &:checked { @include button(osd-active); }
&:disabled { @include button(osd-insensitive); }
}
#login_window #user_combobox {
color: $fg_color;
font: 13px;
.menu,
menu { font: normal; }
}
// the user's avatar box
#user_image {
padding: 3px;
border-radius: 2px;
}
// the shutdown button
#shutdown_button.button {
@include button(suggested_destructive, $destructive_color);
&:hover { @include button(suggested_destructive, lighten($destructive_color, 10%)); }
&:active, &:checked { @include button(suggested_destructive, darken($destructive_color, 10%)); }
}
// the restart button
#restart_button.button {
@include button(suggested_destructive, $suggested_color);
&:hover { @include button(suggested_destructive, lighten($suggested_color, 10%)); }
&:active, &:checked { @include button(suggested_destructive, darken($suggested_color, 10%)); }
}
// the warning, in case a wrong password is entered or something else goes wrong according to PAM
#greeter_infobar {
border-bottom-width: 0;
font: bold;
}