Use "thumbnail" instead of "preview" for dump list items class to avoid conflict with 4chan's .preview

styling.
Also transition the opacity only because of quirky background transition when changing files.
@seaweedchan @saxamaphone69 @ahodesuka
This commit is contained in:
Nicolas Stepien 2012-06-02 04:58:48 +02:00
parent 7836381564
commit 3925059059
2 changed files with 36 additions and 36 deletions

View File

@ -1619,7 +1619,7 @@
this.spoiler = prev && Conf['Remember Spoiler'] ? prev.spoiler : false; this.spoiler = prev && Conf['Remember Spoiler'] ? prev.spoiler : false;
this.com = null; this.com = null;
this.el = $.el('a', { this.el = $.el('a', {
className: 'preview', className: 'thumbnail',
draggable: true, draggable: true,
href: 'javascript:;', href: 'javascript:;',
innerHTML: '<a class=remove>&times;</a><label hidden><input type=checkbox> Spoiler</label><span></span>' innerHTML: '<a class=remove>&times;</a><label hidden><input type=checkbox> Spoiler</label><span></span>'
@ -4331,7 +4331,7 @@ h1 {\
user-select: none;\ user-select: none;\
}\ }\
#replies > div {\ #replies > div {\
counter-reset: previews;\ counter-reset: thumbnails;\
top: 0; right: 0; bottom: 0; left: 0;\ top: 0; right: 0; bottom: 0; left: 0;\
margin: 0; padding: 0;\ margin: 0; padding: 0;\
overflow: hidden;\ overflow: hidden;\
@ -4343,7 +4343,7 @@ h1 {\
overflow-x: auto;\ overflow-x: auto;\
z-index: 1;\ z-index: 1;\
}\ }\
.preview {\ .thumbnail {\
background-color: rgba(0,0,0,.2) !important;\ background-color: rgba(0,0,0,.2) !important;\
background-position: 50% 20% !important;\ background-position: 50% 20% !important;\
background-size: cover !important;\ background-size: cover !important;\
@ -4359,21 +4359,21 @@ h1 {\
overflow: hidden;\ overflow: hidden;\
position: relative;\ position: relative;\
text-shadow: 0 1px 1px #000;\ text-shadow: 0 1px 1px #000;\
-webkit-transition: .25s ease-in-out;\ -webkit-transition: opacity .25s ease-in-out;\
-moz-transition: .25s ease-in-out;\ -moz-transition: opacity .25s ease-in-out;\
-o-transition: .25s ease-in-out;\ -o-transition: opacity .25s ease-in-out;\
transition: .25s ease-in-out;\ transition: opacity .25s ease-in-out;\
vertical-align: top;\ vertical-align: top;\
}\ }\
.preview:hover, .preview:focus {\ .thumbnail:hover, .thumbnail:focus {\
opacity: .9;\ opacity: .9;\
}\ }\
.preview#selected {\ .thumbnail#selected {\
opacity: 1;\ opacity: 1;\
}\ }\
.preview::before {\ .thumbnail::before {\
counter-increment: previews;\ counter-increment: thumbnails;\
content: counter(previews);\ content: counter(thumbnails);\
color: #FFF;\ color: #FFF;\
font-weight: 700;\ font-weight: 700;\
padding: 3px;\ padding: 3px;\
@ -4382,13 +4382,13 @@ h1 {\
right: 0;\ right: 0;\
text-shadow: 0 0 3px #000, 0 0 8px #000;\ text-shadow: 0 0 3px #000, 0 0 8px #000;\
}\ }\
.preview.drag {\ .thumbnail.drag {\
box-shadow: 0 0 10px rgba(0,0,0,.5);\ box-shadow: 0 0 10px rgba(0,0,0,.5);\
}\ }\
.preview.over {\ .thumbnail.over {\
border-color: #FFF;\ border-color: #FFF;\
}\ }\
.preview > span {\ .thumbnail > span {\
color: #FFF;\ color: #FFF;\
}\ }\
.remove {\ .remove {\
@ -4400,14 +4400,14 @@ h1 {\
.remove:hover::after {\ .remove:hover::after {\
content: " Remove";\ content: " Remove";\
}\ }\
.preview > label {\ .thumbnail > label {\
background: rgba(0,0,0,.5);\ background: rgba(0,0,0,.5);\
color: #FFF;\ color: #FFF;\
right: 0; bottom: 0; left: 0;\ right: 0; bottom: 0; left: 0;\
position: absolute;\ position: absolute;\
text-align: center;\ text-align: center;\
}\ }\
.preview > label > input {\ .thumbnail > label > input {\
margin: 0;\ margin: 0;\
}\ }\
#addReply {\ #addReply {\

View File

@ -1203,7 +1203,7 @@ QR =
@com = null @com = null
@el = $.el 'a', @el = $.el 'a',
className: 'preview' className: 'thumbnail'
draggable: true draggable: true
href: 'javascript:;' href: 'javascript:;'
innerHTML: '<a class=remove>&times;</a><label hidden><input type=checkbox> Spoiler</label><span></span>' innerHTML: '<a class=remove>&times;</a><label hidden><input type=checkbox> Spoiler</label><span></span>'
@ -1304,8 +1304,8 @@ QR =
e.preventDefault() e.preventDefault()
e.dataTransfer.dropEffect = 'move' e.dataTransfer.dropEffect = 'move'
drop: -> drop: ->
el = $ '.drag', @parentNode el = $ '.drag', @parentNode
index = (el) -> Array::slice.call(el.parentNode.children).indexOf el index = (el) -> Array::slice.call(el.parentNode.children).indexOf el
oldIndex = index el oldIndex = index el
newIndex = index @ newIndex = index @
if oldIndex < newIndex if oldIndex < newIndex
@ -3305,7 +3305,7 @@ h1 {
user-select: none; user-select: none;
} }
#replies > div { #replies > div {
counter-reset: previews; counter-reset: thumbnails;
top: 0; right: 0; bottom: 0; left: 0; top: 0; right: 0; bottom: 0; left: 0;
margin: 0; padding: 0; margin: 0; padding: 0;
overflow: hidden; overflow: hidden;
@ -3317,7 +3317,7 @@ h1 {
overflow-x: auto; overflow-x: auto;
z-index: 1; z-index: 1;
} }
.preview { .thumbnail {
background-color: rgba(0,0,0,.2) !important; background-color: rgba(0,0,0,.2) !important;
background-position: 50% 20% !important; background-position: 50% 20% !important;
background-size: cover !important; background-size: cover !important;
@ -3333,21 +3333,21 @@ h1 {
overflow: hidden; overflow: hidden;
position: relative; position: relative;
text-shadow: 0 1px 1px #000; text-shadow: 0 1px 1px #000;
-webkit-transition: .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out;
-moz-transition: .25s ease-in-out; -moz-transition: opacity .25s ease-in-out;
-o-transition: .25s ease-in-out; -o-transition: opacity .25s ease-in-out;
transition: .25s ease-in-out; transition: opacity .25s ease-in-out;
vertical-align: top; vertical-align: top;
} }
.preview:hover, .preview:focus { .thumbnail:hover, .thumbnail:focus {
opacity: .9; opacity: .9;
} }
.preview#selected { .thumbnail#selected {
opacity: 1; opacity: 1;
} }
.preview::before { .thumbnail::before {
counter-increment: previews; counter-increment: thumbnails;
content: counter(previews); content: counter(thumbnails);
color: #FFF; color: #FFF;
font-weight: 700; font-weight: 700;
padding: 3px; padding: 3px;
@ -3356,13 +3356,13 @@ h1 {
right: 0; right: 0;
text-shadow: 0 0 3px #000, 0 0 8px #000; text-shadow: 0 0 3px #000, 0 0 8px #000;
} }
.preview.drag { .thumbnail.drag {
box-shadow: 0 0 10px rgba(0,0,0,.5); box-shadow: 0 0 10px rgba(0,0,0,.5);
} }
.preview.over { .thumbnail.over {
border-color: #FFF; border-color: #FFF;
} }
.preview > span { .thumbnail > span {
color: #FFF; color: #FFF;
} }
.remove { .remove {
@ -3374,14 +3374,14 @@ h1 {
.remove:hover::after { .remove:hover::after {
content: " Remove"; content: " Remove";
} }
.preview > label { .thumbnail > label {
background: rgba(0,0,0,.5); background: rgba(0,0,0,.5);
color: #FFF; color: #FFF;
right: 0; bottom: 0; left: 0; right: 0; bottom: 0; left: 0;
position: absolute; position: absolute;
text-align: center; text-align: center;
} }
.preview > label > input { .thumbnail > label > input {
margin: 0; margin: 0;
} }
#addReply { #addReply {