37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
+
+
+
+
+
+
|
.grammalecte_panel_title {
padding: 10px 20px;
}
.grammalecte_panel_label {
display: inline-block;
padding: 0 10px;
}
.grammalecte_panel_invisible_marker {
position: absolute;
/*visibility: hidden;*/
font-size: 6px;
color: hsl(210, 0%, 90%); /* same color than panel_bar background */
}
.grammalecte_panel_commands {
float: right;
}
.grammalecte_copy_button {
display: inline-block;
padding: 2px 10px;
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
+
+
+
+
+
+
+
+
+
|
.grammalecte_panel_content {
position: absolute;
min-width: 100%;
height: calc(100% - 55px); /* panel height - title_bar */
overflow: auto;
}
.grammalecte_panel_message {
margin: 10px;
padding: 10px;
border-radius: 5px;
background-color: hsl(0, 50%, 40%);
color: hsl(0, 50%, 96%);
font-size: 16px;
}
/*
Spinner
*/
.grammalecte_spinner {
visibility: hidden;
|