Project

General

Profile

Feature #43700 » 0002-Replace-physical-CSS-properties-with-logical-ones-in.patch

jstoolbar.css - Go MAEDA, 2026-01-21 11:50

View differences:

app/assets/stylesheets/jstoolbar.css
8 8
    display: none;
9 9
}
10 10
.jstEditor {
11
    padding-left: 0px;
11
    padding-inline-start: 0px;
12 12
}
13 13
.jstEditor textarea, .jstEditor iframe {
14 14
    margin: 0;
15 15
}
16 16
.jstHandle {
17
    height: 10px;
17
    block-size: 10px;
18 18
    font-size: 0.1em;
19 19
    cursor: s-resize;
20 20
    /*background: transparent url(img/resizer.png) no-repeat 45% 50%;*/
21 21
}
22 22
#content .jstTabs.tabs {
23
    margin-bottom: -1px;
23
    margin-block-end: -1px;
24 24
}
25
#content .jstTabs.tabs ul {border-bottom:0;}
25
#content .jstTabs.tabs ul {border-block-end: 0;}
26 26
#content .jstTabs.tabs li {
27
    height: 42px;
27
    block-size: 42px;
28 28
}
29 29
#content .jstTabs.tabs li:before{
30 30
    content: '';
31 31
    display: inline-block;
32 32
    vertical-align: middle;
33
    height: 100%;
33
    block-size: 100%;
34 34
}
35 35
#content .jstTabs.tabs li a {
36 36
    display: inline-block;
37 37
    vertical-align: bottom;
38 38
    line-height: 19px;
39
    border-bottom: 1px solid transparent;
39
    border-block-end: 1px solid transparent;
40 40
}
41 41
.jstElements {
42 42
    display: inline-block;
43 43
    vertical-align: bottom;
44
    padding-left: 6px;
45
    padding-bottom:2px;
46
    height: 26px;
44
    padding-inline-start: 6px;
45
    padding-block-end: 2px;
46
    block-size: 26px;
47 47
}
48 48
.wiki-preview {
49 49
    color: var(--oc-gray-9);
50 50
    background-color: var(--oc-white);
51 51
    border: 1px solid var(--oc-gray-4);
52 52
}
53
.wiki-preview p.empty-preview {color:var(--oc-gray-6); font-style:italic; margin-top:1em; text-align:center;}
53
.wiki-preview p.empty-preview {color: var(--oc-gray-6); font-style: italic; margin-block-start: 1em; text-align: center;}
54 54

  
55 55
.jstElements button {
56
    margin-right: 2px;
57
    width : 24px;
58
    height: 24px;
56
    margin-inline-end: 2px;
57
    inline-size : 24px;
58
    block-size: 24px;
59 59
    padding: 4px;
60 60
    border-style: solid;
61 61
    border-width: 1px;
......
79 79
}
80 80

  
81 81
.jstSpacer {
82
    width : 0px;
82
    inline-size : 0px;
83 83
    font-size: 1px;
84
    margin-right: 6px;
84
    margin-inline-end: 6px;
85 85
}
86 86

  
87
.jstElements .help { float: right; margin-right: 0.5em; padding-top: 8px; font-size: 0.9em; }
88
.jstElements .help a {padding: 2px 0 2px 20px; background: url(./help.png) no-repeat 0 50%;}
87
.jstElements .help { float: inline-end; margin-inline-end: 0.5em; padding-block-start: 8px; font-size: 0.9em; }
88
.jstElements .help a {padding-block: 2px; padding-inline-start: 20px; padding-inline-end: 0; background: url(./help.png) no-repeat 0 50%;}
89 89

  
90 90
.table-generator td {
91 91
    border: 2px solid var(--oc-gray-5);
(2-2/6)