1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
#dragged-entry {
color: #939695;
}
.layer-radio-button {
background-image: none;
padding: 0;
border: 1px solid @insensitive_borders;
outline-width: 1px;
}
.layer-radio-button:checked {
border: 2px solid @suggested_action_button_a;
}
#zoom-in-button,
#zoom-out-button {
font-weight: bold;
}
#sidebar-entry-list,
#sidebar-entry-list .list-row:hover {
background-color: transparent;
}
#sidebar-entry-list .list-row:focus {
outline: 0;
}
#sidebar-entry-list > GtkLabel {
padding-right: 6px;
}
#sidebar-entry-list > GtkLabel:dir(rtl) {
padding-left: 6px;
}
#sidebar {
border-left: 1px solid @borders;
}
#sidebar:dir(rtl) {
border-right: 1px solid @borders;
}
#sidebar grid.frame {
border-width: 1px 0;
}
#instruction-list {
border-right: 0px;
border-left: 0px;
}
#instruction-box > GtkImage {
padding-right: 6px;
padding-left: 6px;
}
.map-bubble contents {
/* This is so the Wikipedia image is flush against the borders of the popover */
padding: 0;
}
.no-margin-separator {
/* A separator with no margin, so it's flush with the widgets/borders around it */
margin: 0;
}
.bubble-title {
font-size: large;
font-weight: bold;
}
.small-label,
.bubble-content,
.bubble-subtitle {
font-size: small;
}
.shaded {
background-color: alpha(black, 0.1);
border-bottom: 1px solid alpha(black, 0.2);
}
.route-label {
padding-left: 3px;
padding-right: 3px;
padding-top: 3px;
padding-bottom: 3px;
min-width: 18px;
min-height: 18px;
font-size: smaller;
font-weight: bold;
}
.small-circular {
border-radius: 14px;
min-width: 14px;
min-height: 14px;
padding: 0px 0px;
background-color: transparent;
}
.suggestions {
padding-top: 6px;
}
.dropdown-searchbar {
padding: 6px;
border-bottom: 1px solid @borders;
}
popover.suggestions list > row:hover {
background-color: alpha(currentColor, .04);
}
popover.suggestions list > row:active {
background-color: alpha(currentColor, .08);
}
popover.suggestions list > row:selected {
background-color: alpha(currentColor, .1);
}
popover.suggestions list > row:selected:hover {
background-color: alpha(currentColor, .13);
}
popover.suggestions list > row:selected:active {
background-color: alpha(currentColor, .19);
}
label.italic {
font-style: italic;
}
/* Overlay controls for zoom */
button.card.circular {
min-width: 42px;
min-height: 42px;
}
.dim-spinbutton spinbutton text {
opacity: 0.5;
}
.flow button {
padding-top: 0.24em;
padding-bottom: 0.24em;
}
@keyframes rotate_star {
from { -gtk-icon-transform: rotate(-72deg); }
to {}
}
@keyframes rotate_unstar {
from { -gtk-icon-transform: rotate(72deg); }
to {}
}
.favorite.starred image {
animation: rotate_star 0.4s ease;
}
.favorite.unstarred image {
animation: rotate_unstar 0.4s ease;
}
|