45 lines
653 B
SCSS
45 lines
653 B
SCSS
![]() |
/*********
|
||
|
* 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;
|
||
|
}
|
||
|
}
|