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
|
/*
SPDX-FileCopyrightText: Simon Schneegans <code@simonschneegans.de>
SPDX-License-Identifier: MIT
*/
/* This is used in the tutorial. */
.tutorial-video {
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.pill-button {
border-radius: 9999px;
}
.round-button {
border-radius: 20px;
}
.small-popover>contents {
padding: 0;
}
/* This is used for the unread-achievements counter. */
.counter-label {
text-shadow: none;
color: @theme_selected_fg_color;
background-color: @theme_selected_bg_color;
font-size: smaller;
border-radius: 5px;
padding: 0px 8px;
}
/* This is an entry at the top of the menu editor. */
.menu-editor-path-item {
border-radius: 0;
border-left: none;
border-top: none;
border-bottom: none;
}
.menu-editor-path-item:first-child {
border-radius: 8px 0 0 8px;
}
menubutton.menu-editor-add-button button {
border-radius: 0 8px 8px 0;
border-right: none;
border-top: none;
border-bottom: none;
}
|