File: flypie.css

package info (click to toggle)
gnome-shell-extension-flypie 17-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 19,852 kB
  • sloc: javascript: 8,664; xml: 669; sh: 134; makefile: 76
file content (70 lines) | stat: -rw-r--r-- 1,367 bytes parent folder | download
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
/* 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 only works on GTK4. */

.fly-pie-window {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* 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;
}

/* The top selector is for GTK3, the bottom one for GTK4. */

.menu-editor-add-button,
menubutton.menu-editor-add-button button {
    border-radius: 0 8px 8px 0;
    border-right: none;
    border-top: none;
    border-bottom: none;
}

/* Let's make frames nicely rounded. On GTK4's Adwaita this seems to be the default,
   however we have to set this here to get a more unified look on GTK3. */

frame>* {
    border-radius: 8px;
}

/* Remove the Adw.Clamp's margin. */

clamp>* {
    margin: 0px;
}