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
71
72
73
74
75
76
77
78
79
80
81
|
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
71
72
73
74
75
76
77
78
79
80
81
|
+
+
+
-
+
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
+
|
/*
CSS for the Text Formatter
*/
/*
Options
*/
#grammalecte_tf_options {
display: flex;
padding: 10px;
color: hsl(0, 0%, 0%);
}
.grammalecte_tf_column {
flex-grow: 1;
width: 360px;
padding: 0 5px;
}
#grammalecte_tf_options legend label {
margin: 0;
padding: 0;
font-size: 20px;
color: hsla(210, 20%, 50%, .8);
font-weight: bold;
}
#grammalecte_tf_options fieldset {
padding: 2px 10px 10px 13px;
margin-bottom: 5px;
margin: 0 0 5px 0;
background-color: hsl(210, 10%, 96%);
border-color: hsl(210, 20%, 80%);
border-radius: 3px;
}
#grammalecte_tf_options legend .option {
#grammalecte_tf_options legend .grammalecte_tf_option {
margin: 7px 5px 0 4px;
float: left;
}
#grammalecte_tf_options label {
margin: 0;
padding: 0;
font-size: 13px;
}
#grammalecte_tf_options .underline:hover {
.grammalecte_tf_underline:hover {
background-color: hsl(210, 10%, 86%);
border-radius: 2px;
}
#grammalecte_tf_options .blockopt .option {
.grammalecte_tf_blockopt .grammalecte_tf_option {
margin: 4px 5px 0 6px;
float: left;
}
#grammalecte_tf_options .grammalecte_tf_result {
.grammalecte_tf_result {
float: right;
margin: 2px 3px 0 0;
font-size: 13px;
}
#grammalecte_tf_options .indent {
.grammalecte_tf_indent {
padding-left: 20px;
}
#grammalecte_tf_options .inlineblock {
.grammalecte_tf_inlineblock {
display: inline-block;
margin-right: 10px;
}
#grammalecte_tf_options .rmg10 {
margin-right: 10px;
}
/*
Actions
*/
#grammalecte_tf_actions {
/*background-color: hsl(120, 10%, 92%);*/
display: flex;
justify-content: space-between;
padding: 15px 15px 10px 15px;
border-top: 1px solid hsl(210, 10%, 90%);
}
.grammalecte_button {
.grammalecte_tf_button {
display: inline-block;
padding: 5px 10px;
width: 100px;
border-radius: 3px;
font-size: 16px;
font-weight: bold;
text-align: center;
|
99
100
101
102
103
104
105
106
107
108
109
110
|
99
100
101
102
103
104
105
|
-
-
-
-
-
|
#grammalecte_tf_apply {
background-color: hsl(120, 50%, 50%);
color: hsl(150, 0%, 100%);
}
#grammalecte_tf_apply:hover {
background-color: hsl(120, 50%, 40%);
}
#grammalecte_progressbarbox {
display: inline-block;
padding: 10px 20px;
}
|