File: style.css

package info (click to toggle)
input-remapper 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,876 kB
  • sloc: python: 27,262; sh: 191; xml: 33; makefile: 3
file content (50 lines) | stat: -rw-r--r-- 936 bytes parent folder | download | duplicates (3)
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
.status_bar frame {
    /* the status bar is ugly in elementary os otherwise */
    border: 0px;
}

.transparent {
    background: transparent;
}

.copyright {
    font-size: 7pt;
}

.autocompletion label {
    padding: 11px;
}

.autocompletion {
    padding: 0px;
    box-shadow: none;
}

.no-v-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.transformation-draw-area {
    border: 1px solid @borders;
    border-radius: 6px;
    background: @theme_base_color;
}

.multiline > *:first-child {
    /* source view suddenly started showing a white background behind line-numbers */
    /* solution found by furiously trying css rules out in the gtk inspector */
    background: @theme_bg_color;
}

.opaque-text text {
    /* found by roaming through /usr/share/themes,
    and some experimentation in the gnome inspector */
    color: alpha(currentColor, 0.5);
}

/*
@theme_bg_color
@theme_selected_bg_color
@theme_base_color
*/