Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / filter / css / filter.admin.css
1
2 /**
3  * @file
4  * Admin styling for the Filter module.
5  */
6
7 /**
8  * Filter information under field.
9  */
10 .text-format-wrapper > .form-item {
11   margin-bottom: 0;
12 }
13
14 .filter-wrapper {
15   border: 1px solid #ccc;
16   border-top: 0;
17   margin: 0;
18   padding: 0.5em 0.666em;
19   overflow: hidden;
20 }
21 .filter-wrapper .form-item {
22   margin: 0;
23 }
24 .filter-wrapper .form-item label {
25   display: inline;
26 }
27
28 .filter-help {
29   float: right; /* LTR */
30 }
31 [dir="rtl"] .filter-help {
32   float: left;
33 }
34 .filter-guidelines .filter-guidelines-item {
35   margin-top: 1em;
36 }
37 .filter-help p {
38   margin: 0;
39 }
40 .filter-help a {
41   position: relative;
42   margin: 0 20px 0 0; /* LTR */
43 }
44 [dir="rtl"] .filter-help a {
45   margin: 0 0 0 20px;
46 }
47 .filter-help a:after {
48   position: absolute;
49   top: 0;
50   right: -20px; /* LTR */
51   content: '';
52   display: block;
53   width: 16px;
54   height: 16px;
55   background: transparent url(../../../misc/help.png);
56 }
57 [dir="rtl"] .filter-help a:after {
58   right: auto;
59   left: -20px;
60 }
61
62 .text-format-wrapper .description {
63   margin-top: 0.5em;
64 }
65 .tips {
66   font-size: 0.9em;
67   margin-bottom: 0;
68   margin-top: 0;
69   padding-bottom: 0;
70   padding-top: 0;
71 }
72
73 /**
74  * Improve filter tips position.
75  */
76 .tips {
77   padding-left: 0; /* LTR */
78 }
79 [dir="rtl"] .tips {
80   padding-right: 0;
81 }