##// END OF EJS Templates
URL stamps should also be monochrome
neko259 -
r1966:52a70b91 default
parent child Browse files
Show More
@@ -1,199 +1,198 b''
1 1 .ui-button {
2 2 display: none;
3 3 }
4 4
5 5 .ui-dialog-content {
6 6 padding: 0;
7 7 min-height: 0;
8 8 }
9 9
10 10 .mark_btn {
11 11 cursor: pointer;
12 12 }
13 13
14 14 .img-full {
15 15 position: fixed;
16 16 background-color: #CCC;
17 17 border: 1px solid #000;
18 18 cursor: pointer;
19 19 }
20 20
21 21 .strikethrough {
22 22 text-decoration: line-through;
23 23 }
24 24
25 25 .post_preview {
26 26 z-index: 300;
27 27 position:absolute;
28 28 }
29 29
30 30 .gallery_image {
31 31 display: inline-block;
32 32 }
33 33
34 34 @media print {
35 35 .post-form-w {
36 36 display: none;
37 37 }
38 38 }
39 39
40 40 input[name="image"] {
41 41 display: block;
42 42 width: 100px;
43 43 height: 100px;
44 44 cursor: pointer;
45 45 position: absolute;
46 46 opacity: 0;
47 47 z-index: 1;
48 48 }
49 49
50 50 .file_wrap {
51 51 width: 100px;
52 52 height: 100px;
53 53 border: solid 1px white;
54 54 display: inline-block;
55 55 }
56 56
57 57 form > .file_wrap {
58 58 float: left;
59 59 }
60 60
61 61 .file-thumb {
62 62 width: 100px;
63 63 height: 100px;
64 64 background-size: cover;
65 65 background-position: center;
66 66 }
67 67
68 68 .compact-form-text {
69 69 margin-left:110px;
70 70 }
71 71
72 72 textarea, input {
73 73 -moz-box-sizing: border-box;
74 74 -webkit-box-sizing: border-box;
75 75 box-sizing: border-box;
76 76 }
77 77
78 78 .compact-form-text > textarea {
79 79 height: 100px;
80 80 width: 100%;
81 81 }
82 82
83 83 .post-button-form {
84 84 display: inline;
85 85 }
86 86
87 87 .post-button-form > button, #autoupdate {
88 88 border: none;
89 89 margin: inherit;
90 90 padding: inherit;
91 91 background: none;
92 92 font-size: inherit;
93 93 cursor: pointer;
94 94 }
95 95
96 96 .post-image-full {
97 97 width: 100%;
98 98 height: auto;
99 99 }
100 100
101 101 #preview-text {
102 102 display: none;
103 103 }
104 104
105 105 .random-images-table {
106 106 text-align: center;
107 107 }
108 108
109 109 .random-images-table > div {
110 110 margin-left: auto;
111 111 margin-right: auto;
112 112 }
113 113
114 114 .tag-image, .tag-text-data {
115 115 display: inline-block;
116 116 }
117 117
118 118 .tag-text-data > h2 {
119 119 margin: 0;
120 120 }
121 121
122 122 .tag-image {
123 123 margin-right: 5px;
124 124 }
125 125
126 126 .reply-to-message {
127 127 display: none;
128 128 }
129 129
130 130 .tripcode {
131 131 padding: 2px;
132 132 }
133 133
134 134 #fav-panel {
135 135 display: none;
136 136 margin: 1ex;
137 137 }
138 138
139 139 .hidden_post {
140 140 opacity: 0.2;
141 141 }
142 142
143 143 .hidden_post:hover {
144 144 opacity: 1;
145 145 }
146 146
147 .monochrome > .image > .thumb > img, .monochrome.img-full {
147 .url-image:hover, .monochrome .url-image:hover {
148 filter: invert(100%);
149 }
150
151 .monochrome > .image > .thumb > img, .monochrome .url-image, .monochrome.img-full {
148 152 filter: grayscale(100%);
149 -webkit-filter: grayscale(100%);
150 153 }
151 154
152 155 #quote-button {
153 156 position: absolute;
154 157 display: none;
155 158 cursor: pointer;
156 159 z-index: 400;
157 160 }
158 161
159 162 .required-field:before {
160 163 content: '* ';
161 164 }
162 165
163 166 .hint {
164 167 border-bottom: dashed 1px;
165 168 cursor: help;
166 169 }
167 170
168 .url-image:hover {
169 filter: invert(100%);
170 }
171
172 171 .landing-tags, .landing-images {
173 172 max-width: 800px;
174 173 margin-left: auto;
175 174 margin-right: auto;
176 175 }
177 176
178 177 .landing-images {
179 178 text-align: center;
180 179 }
181 180
182 181 .landing-threads {
183 182 margin-left: auto;
184 183 margin-right: auto;
185 184 text-align: center;
186 185 display: flex;
187 186 flex-wrap: wrap;
188 187 justify-content: space-around;
189 188 }
190 189
191 190 .landing-threads > .thread-short {
192 191 display: inline-block;
193 192 width: 240px;
194 193 }
195 194
196 195 audio {
197 196 width: 200px;
198 197 }
199 198
General Comments 0
You need to be logged in to leave comments. Login now