Grammalecte  Check-in [181dd4ee47]

Overview
Comment:[fx] WebExt: use transparency for the wrapper
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | fx
Files: files | file ages | folders
SHA3-256: 181dd4ee475e84fe00d4b76b395621cdf2b623bb3be455a2c2d9d863944dda43
User & Date: olr on 2017-09-02 19:31:49
Other Links: manifest | tags
Context
2017-09-03
09:12
[fx] WebExt: try to protect elements from CSS inheritance (grammar checker) check-in: ecd1e8587f user: olr tags: trunk, fx
2017-09-02
19:31
[fx] WebExt: use transparency for the wrapper check-in: 181dd4ee47 user: olr tags: trunk, fx
18:52
[fx] WebExt: try to protect elements from CSS inheritance (lexicographer) check-in: ae3c05dd2b user: olr tags: trunk, fx
Changes

Modified gc_lang/fr/webext/content_scripts/wrapper.css from [0cb871b84c] to [2d57bc7c73].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
    CSS
    Wrappen for Grammalecte
*/


.grammalecte_wrapper {
    margin: 3px;
    padding: 5px;
    border-radius: 3px;
    background-color: hsl(210, 40%, 96%);
    border: 1px solid hsl(210, 40%, 92%);
    box-shadow: 0 0 2px hsla(210, 40%, 0%, .5);
    font-family: "Trebuchet MS", "Liberation Sans", sans-serif;
    color: hsl(210, 40%, 50%);
}

.grammalecte_wrapper_title {
    padding: 5px 0;
    font-size: 12px;
    font-variant: small-caps;
}










|
|
|

|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
    CSS
    Wrappen for Grammalecte
*/


.grammalecte_wrapper {
    margin: 3px;
    padding: 5px;
    border-radius: 3px;
    background-color: hsla(210, 100%, 96%, .2);
    border: 1px solid hsla(210, 100%, 92%, .2);
    box-shadow: 0 0 2px hsla(210, 100%, 0%, .2);
    font-family: "Trebuchet MS", "Liberation Sans", sans-serif;
    color: hsla(210, 100%, 50%, .2);
}

.grammalecte_wrapper_title {
    padding: 5px 0;
    font-size: 12px;
    font-variant: small-caps;
}
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
    font-size: 14px;
    color: hsl(210, 40%, 40%);
    cursor: pointer;
}
.grammalecte_wrapper_button:hover {
    background-color: hsl(210, 80%, 70%);
    border: 1px solid hsl(210, 80%, 60%);
    box-shadow: 0 0 1px 1px hsl(210, 80%, 80%);
    color: hsl(210, 80%, 98%);
}

.grammalecte_wrapper_conj_section {
    display: none;
}








|







38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
    font-size: 14px;
    color: hsl(210, 40%, 40%);
    cursor: pointer;
}
.grammalecte_wrapper_button:hover {
    background-color: hsl(210, 80%, 70%);
    border: 1px solid hsl(210, 80%, 60%);
    box-shadow: 0 0 1px 1px hsla(210, 100%, 50%, .5);
    color: hsl(210, 80%, 98%);
}

.grammalecte_wrapper_conj_section {
    display: none;
}