1
1
.bbcodeplus .pre {
2
- border : 1px solid silver;
3
- margin : 0 0 1.5em 0 ;
4
- overflow : auto;
5
- padding-left : 10px ;
6
- border-radius : 4px ;
2
+ border : 1px solid silver;
3
+ margin : 0 0 1.5em 0 ;
4
+ overflow : auto;
5
+ padding-left : 10px ;
6
+ border-radius : 4px ;
7
7
}
8
8
9
9
.bbcodeplus .code span {
10
- font-family : Consolas, Monaco, "Andale Mono" , "Ubuntu Mono" , monospace;
11
- font-size : 1em ;
10
+ font-family : Consolas, Monaco, "Andale Mono" , "Ubuntu Mono" , monospace;
11
+ font-size : 1em ;
12
12
}
13
13
14
14
.bbcodeplus .table td {
15
- border : 0 !important ;
15
+ border : 0 !important ;
16
16
}
17
17
18
18
.bbcodeplus .table-bordered td , .bbcodeplus .table-bordered tr , .bbcodeplus .table-bordered th {
19
- border : 1px solid silver !important ;
19
+ border : 1px solid silver !important ;
20
20
}
21
21
22
22
.bbcodeplus .blockquote {
23
- border : solid # c0c0c0 1px ;
24
- border-left : solid # c0c0c0 5px ;
25
- padding : 10px ;
26
- font-size : 1em ;
27
- background-color : # f5f2f0 ;
28
- border-radius : 4px ;
23
+ border : solid # c0c0c0 1px ;
24
+ border-left : solid # c0c0c0 5px ;
25
+ padding : 10px ;
26
+ font-size : 1em ;
27
+ background-color : # f5f2f0 ;
28
+ border-radius : 4px ;
29
29
}
30
+
31
+ .bbcodeplus .modal {
32
+ display : none;
33
+ position : fixed;
34
+ z-index : 1030 ;
35
+ padding-top : 100px ;
36
+ left : 0 ;
37
+ top : 0 ;
38
+ width : 100% ;
39
+ height : 100% ;
40
+ overflow : auto;
41
+ background-color : rgb (0 , 0 , 0 );
42
+ background-color : rgba (0 , 0 , 0 , 0.4 );
43
+ }
44
+
45
+ .bbcodeplus .modal-close {
46
+ color : white;
47
+ }
48
+
49
+ .bbcodeplus .modal-close : hover ,
50
+ .bbcodeplus .modal-close : focus {
51
+ color : # 000 ;
52
+ text-decoration : none;
53
+ cursor : pointer;
54
+ }
55
+
56
+ .bbcodeplus .modal-content {
57
+ position : relative;
58
+ background-color : # fefefe ;
59
+ margin : auto;
60
+ padding : 0 ;
61
+ border : 1px solid # 888 ;
62
+ width : 50% ;
63
+ max-height : 50%px ;
64
+ overflow : auto;
65
+ z-index : 1031 ;
66
+ box-shadow : 0 4px 8px 0 rgba (0 , 0 , 0 , 0.2 ), 0 6px 20px 0 rgba (0 , 0 , 0 , 0.19 );
67
+ animation-name : animatetop;
68
+ animation-duration : 0.4s
69
+ }
70
+
71
+ .bbcodeplus .image-picker ul {
72
+ margin : 1em 0 ;
73
+ padding : 0 ;
74
+ list-style : none;
75
+ display : grid;
76
+ grid : auto-flow / repeat (auto-fit, minmax (100px , 1fr ));
77
+ align-items : baseline;
78
+ grid-gap : 10px ;
79
+ gap : 10px ;
80
+ }
81
+
82
+ .bbcodeplus .image-picker li {
83
+ width : 100px ;
84
+ height : 100px ;
85
+ min-height : 100px ;
86
+ display : -moz-inline-stack;
87
+ display : inline-block;
88
+ vertical-align : middle;
89
+ margin : 5px ;
90
+ zoom : 1 ;
91
+ * display : inline;
92
+ }
93
+
94
+ .bbcodeplus .image-picker li img {
95
+ width : 100% ;
96
+ padding : 5px ;
97
+ border : 1px solid rgba (221 , 221 , 221 , 1 );
98
+ border-radius : 5px ;
99
+ max-width : 100% ;
100
+ }
101
+
102
+ .bbcodeplus .image-picker li img : hover {
103
+ filter : brightness (80% );
104
+ background-color : rgba (221 , 221 , 221 , 1 );
105
+ }
106
+
107
+ /* Add Animation */
108
+ @-webkit-keyframes animatetop {
109
+ from {top : -300px ; opacity : 0 }
110
+ to {top : 0 ; opacity : 1 }
111
+ }
112
+
113
+ @keyframes animatetop {
114
+ from {top : -300px ; opacity : 0 }
115
+ to {top : 0 ; opacity : 1 }
116
+ }
0 commit comments