質問編集履歴

1

cssファイル追加

2017/05/24 05:29

投稿

mokopi
mokopi

スコア38

test CHANGED
File without changes
test CHANGED
@@ -35,3 +35,211 @@
35
35
 
36
36
 
37
37
  詳しい方、アドバイス下さい。
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+ プラグインの編集を見ると、CSSファイルは2つあります。
48
+
49
+
50
+
51
+ 1つ目
52
+
53
+
54
+
55
+ content-warning-v2/css/cwv3.min.css
56
+
57
+ ```.cwv3.dialog-overlay{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99998}.cwv3_dialog{border:3px solid #CCC;background:#FFF;max-width:60%;max-height:90%;position:fixed;top:25%;left:25%;-webkit-box-shadow:2px 11px 48px #000;-moz-box-shadow:2px 11px 48px #000;box-shadow:2px 11px 48px #000;overflow:hidden;z-index:99999}.cwv3_dialog div{padding:.25em}.cwv3_dialog .cwv3.auth,.cwv3_dialog .cwv3.denied{height:100%}.cwv3_dialog .cwv3_title{color:#FFF;font-weight:700;text-align:center;background:red;margin-bottom:.25em}.cwv3_dialog .cwv3_content{height:80%;max-height:700px;padding:0 .75em;overflow:auto;margin-bottom:.25em;color:#000}.cwv3_dialog .cwv3_content p{color:#000}.cwv3_dialog .cwv3_btns{background:rgba(50,50,50,.5);bottom:0;overflow:hidden;padding:.45em .75em}.cwv3_dialog .cwv3_btns a{display:block;width:100%;text-align:center;color:#FFF;font-weight:700;text-decoration:none;padding:.35em 0}.cwv3_dialog .cwv3_btns div{width:30%;display:inline-block}.cwv3_dialog .cwv3_btns .cwv3_exit{float:right}.cwv3_dialog .cwv3_btns .cwv3_exit a{background-color:red}.cwv3_dialog .cwv3_btns .cwv3_enter{float:left}.cwv3_dialog .cwv3_btns .cwv3_enter a{background-color:#0C3}
58
+
59
+
60
+
61
+ ```
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+ 2つ目
70
+
71
+
72
+
73
+ content-warning-v2/css/cwv3.css
74
+
75
+
76
+
77
+ ```
78
+
79
+ .cwv3.dialog-overlay {
80
+
81
+ position: fixed;
82
+
83
+ top: 0;
84
+
85
+ left: 0;
86
+
87
+ width: 100%;
88
+
89
+ height: 100%;
90
+
91
+ z-index: 99998;
92
+
93
+ }
94
+
95
+
96
+
97
+
98
+
99
+ /* Main CWV3 Dialog */
100
+
101
+ .cwv3_dialog {
102
+
103
+ border: 3px solid #CCCCCC;
104
+
105
+ background: #FFFFFF;
106
+
107
+ max-width: 60%;
108
+
109
+ max-height: 90%;
110
+
111
+ position: fixed;
112
+
113
+ top: 25%;
114
+
115
+ left: 25%;
116
+
117
+ -webkit-box-shadow: 2px 11px 48px #000;
118
+
119
+ -moz-box-shadow: 2px 11px 48px #000;
120
+
121
+ box-shadow: 2px 11px 48px #000;
122
+
123
+ overflow: hidden;
124
+
125
+ z-index: 99999;
126
+
127
+ }
128
+
129
+ .cwv3_dialog div {
130
+
131
+ padding: 0.25em;
132
+
133
+ }
134
+
135
+ .cwv3_dialog .cwv3.auth, .cwv3_dialog .cwv3.denied {
136
+
137
+ height: 100%;
138
+
139
+ }
140
+
141
+ .cwv3_dialog .cwv3_title {
142
+
143
+ color: #FFFFFF;
144
+
145
+ font-weight: bold;
146
+
147
+ text-align: center;
148
+
149
+ background: #FF0000;
150
+
151
+ margin-bottom: 0.25em;
152
+
153
+ }
154
+
155
+ .cwv3_dialog .cwv3_content {
156
+
157
+ height: 80%;
158
+
159
+ max-height: 700px;
160
+
161
+ padding: 0 .75em;
162
+
163
+ overflow: auto;
164
+
165
+ margin-bottom: 0.25em;
166
+
167
+ color: #000000;
168
+
169
+ }
170
+
171
+ .cwv3_dialog .cwv3_content p {
172
+
173
+ color: #000000;
174
+
175
+ }
176
+
177
+ .cwv3_dialog .cwv3_btns {
178
+
179
+ background: rgba(50, 50, 50, 0.5);
180
+
181
+ bottom: 0;
182
+
183
+ overflow: hidden;
184
+
185
+ padding: .45em .75em;
186
+
187
+ }
188
+
189
+ .cwv3_dialog .cwv3_btns a {
190
+
191
+ display: block;
192
+
193
+ width: 100%;
194
+
195
+ text-align: center;
196
+
197
+ color: #FFFFFF;
198
+
199
+ font-weight: bold;
200
+
201
+ text-decoration: none;
202
+
203
+ padding: .35em 0;
204
+
205
+ }
206
+
207
+ .cwv3_dialog .cwv3_btns div {
208
+
209
+ width: 30%;
210
+
211
+ display: inline-block;
212
+
213
+ }
214
+
215
+ .cwv3_dialog .cwv3_btns .cwv3_exit {
216
+
217
+ float: right;
218
+
219
+ }
220
+
221
+ .cwv3_dialog .cwv3_btns .cwv3_exit a {
222
+
223
+ background-color: #FF0000;
224
+
225
+ }
226
+
227
+ .cwv3_dialog .cwv3_btns .cwv3_enter {
228
+
229
+ float: left;
230
+
231
+ }
232
+
233
+ .cwv3_dialog .cwv3_btns .cwv3_enter a {
234
+
235
+ background-color: #00CC33;
236
+
237
+ }
238
+
239
+
240
+
241
+ /*# sourceMappingURL=cwv3.css.map */
242
+
243
+
244
+
245
+ ```