2 @import "ui-variables";
10 h1 { font-size: 2em; }
11 h2 { font-size: 1.5em; }
12 h3 { font-size: 1.2em; }
26 background: @inset-panel-background-color;
27 border-radius: @component-border-radius;
34 background: @background-color-highlight;
35 border-radius: @component-border-radius;
38 .selected { .text(highlight); }
40 .text-smaller { font-size: 0.9em; }
42 .text-subtle { .text(subtle); }
43 .text-highlight { .text(highlight); }
45 .text-error { .text(error); }
48 &:hover { color: @text-color-info; }
52 &:hover { color: @text-color-warning; }
56 &:hover { color: @text-color-success; }
60 color: @text-color-highlight;
63 background-color: @background-color-highlight;
64 border-radius: @component-border-radius;
68 .highlight-color(@name, @color) {
70 color: @text-color-highlight;
73 background-color: @color;
74 border-radius: @component-border-radius;
78 .highlight-color(info, @background-color-info);
79 .highlight-color(warning, @background-color-warning);
80 .highlight-color(error, @background-color-error);
81 .highlight-color(success, @background-color-success);