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
|
/* History items styling */
.history-item {
padding-left: 4px;
padding-right: 4px;
}
/* Favorite items styling */
.favorite-item {
background-color: alpha(@accent_color, 0.1);
}
.favorite-item:hover {
background-color: alpha(@accent_color, 0.15);
}
/* History list row styling for favorites */
listbox row.favorite-item {
background-color: alpha(@accent_color, 0.08);
}
listbox row.favorite-item:hover {
background-color: alpha(@accent_color, 0.12);
}
listbox row.favorite-item:selected {
background-color: alpha(@accent_color, 0.2);
}
.example-text {
font-style: italic;
color: @accent_color;
}
.term-view,
.pos-header {
font-size: large;
font-weight: bold;
}
.pronunciation-view {
font-style: italic;
}
.relation-type,
.definition-number,
.synset-header {
font-weight: bold;
}
.definition {
font-size: large;
}
/* Lemma buttons (eg: synonym buttons) */
.lemma-button {
padding-left: 6px;
padding-right: 6px;
padding-top: 1px;
padding-bottom: 1px;
color: @accent_fg_color;
background-color: @accent_bg_color;
}
.lemma-button:hover {
background-color: alpha(@accent_bg_color, 0.7);
}
|