40 lines
948 B
CSS
40 lines
948 B
CSS
|
.notebook tab .button {
|
||
|
-GtkButton-default-border: 0;
|
||
|
-GtkButton-default-outside-border: 0;
|
||
|
-GtkButton-inner-border: 0;
|
||
|
-GtkWidget-focus-line-width: 0;
|
||
|
-GtkWidget-focus-padding: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.entry.progressbar {
|
||
|
background-image: -gtk-gradient(linear,
|
||
|
left top, left bottom, from (@selected_bg_color), to (@selected_bg_color));
|
||
|
color: @selected_fg_color;
|
||
|
}
|
||
|
|
||
|
.entry.security_unknown {
|
||
|
background-image: -gtk-gradient(linear,
|
||
|
left top, left bottom, from (#ef7070), to(#ef7070));
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
.entry.security_trusted {
|
||
|
background-image: -gtk-gradient(linear,
|
||
|
left top, left bottom, from (#d1eeb9), to(#d1eeb9));
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
GtkOverlay > * {
|
||
|
padding: 4px;
|
||
|
border-style: solid;
|
||
|
border-radius: 0 5px 0 0;
|
||
|
border-width: 1px 1px 0 0;
|
||
|
}
|
||
|
|
||
|
GtkOverlay MidoriFindbar {
|
||
|
border-radius: 0 0 0 5px;
|
||
|
border-width: 0 0 1px 1px; /* top right bottom left */
|
||
|
}
|
||
|
|