mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
Visual hash on paste history, paste history refactoring, callback refactoring, reversible clone
This commit is contained in:
@@ -119,12 +119,21 @@ h4#pixels-total {
|
||||
float:left;
|
||||
}
|
||||
|
||||
.file-upload {
|
||||
html.file-upload p.file-upload {
|
||||
float: left;
|
||||
margin: 22px 0px 0px 21px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
html.file-upload p.file-upload {
|
||||
display:inherit;
|
||||
}
|
||||
|
||||
html.no-file-upload p.file-upload {
|
||||
display:none;
|
||||
}
|
||||
|
||||
|
||||
input.btn-upload {
|
||||
position: relative;
|
||||
left: -6px;
|
||||
@@ -147,14 +156,19 @@ input.hide-upload {
|
||||
height: 49px;
|
||||
}
|
||||
|
||||
/* Paste Page */
|
||||
|
||||
.items {
|
||||
text-align: center;
|
||||
}
|
||||
/* Paste Page */
|
||||
|
||||
#paste-content {
|
||||
background-color: white;
|
||||
padding:1em;
|
||||
}
|
||||
|
||||
|
||||
#paste-content.done {
|
||||
background-color: white;
|
||||
padding-top:1em;
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
.submit-form {
|
||||
@@ -177,7 +191,7 @@ li.L5, li.L6, li.L7, li.L8, li.L9
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
.prettyprint.linenums {
|
||||
.prettyprint.linenums.done {
|
||||
-webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
|
||||
-moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
|
||||
box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
|
||||
@@ -254,7 +268,7 @@ button.btn, input[type="submit"].btn {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
.btn-primary, .btn-danger {
|
||||
position:relative;
|
||||
top:-4px;
|
||||
}
|
||||
@@ -275,8 +289,35 @@ button.btn, input[type="submit"].btn {
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
-webkit-transition: width 0.1s ease;
|
||||
-moz-transition: width 0.1s ease;
|
||||
-ms-transition: width 0.1s ease;
|
||||
-o-transition: width 0.1s ease;
|
||||
transition: width 0.1s ease;
|
||||
.lnk-option canvas {
|
||||
vertical-align:middle;
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
|
||||
/* Previous paste list */
|
||||
|
||||
.previous-pastes .item {
|
||||
margin-top:5px;
|
||||
vertical-align:middle;
|
||||
line-height:24px;
|
||||
padding-left:1em;
|
||||
}
|
||||
|
||||
.previous-pastes canvas {
|
||||
display:block;
|
||||
float:left;
|
||||
margin-right:5px;
|
||||
}
|
||||
|
||||
html.local-storage .no-local-storage {
|
||||
display:none;
|
||||
}
|
||||
|
||||
html.no-local-storage .local-storage {
|
||||
display:none;
|
||||
}
|
||||
|
||||
canvas {
|
||||
border: 1px solid white;
|
||||
}
|
||||
Reference in New Issue
Block a user