From c553bb64715f40d1755bb84c277442df88e3a925 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 6 Sep 2016 14:02:31 +0200 Subject: Add multipaste queue Signed-off-by: Florian Pritz --- public_html/data/css/style.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'public_html/data/css/style.css') diff --git a/public_html/data/css/style.css b/public_html/data/css/style.css index 57366d3d6..8868c5995 100644 --- a/public_html/data/css/style.css +++ b/public_html/data/css/style.css @@ -42,6 +42,38 @@ height: 50px; } +.multipasteQueue .items>div { + height: 190px; + display: inline-block; + width: 150px; + vertical-align: top; + margin: 0 1px 20px 1px; +} + +.multipasteQueue .items .item { + height: 160px; +} + +.ajaxFeedback { + display: inline-block; +} + +/* Source: http://stackoverflow.com/a/26283602 */ +.glyphicon.spinning { + animation: spin 1s infinite linear; + -webkit-animation: spin2 1s infinite linear; +} + +@keyframes spin { + from { transform: scale(1) rotate(0deg); } + to { transform: scale(1) rotate(360deg); } +} + +@-webkit-keyframes spin2 { + from { -webkit-transform: rotate(0deg); } + to { -webkit-transform: rotate(360deg); } +} + @media (max-width: 768px) { .dont-float { float: left; -- cgit v1.2.3-24-g4f1b From 6b60e109bb3feff911af34b13acdc75f2f9487b2 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 6 Sep 2016 14:40:56 +0200 Subject: Add multipaste queue button to navigation Signed-off-by: Florian Pritz --- public_html/data/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'public_html/data/css/style.css') diff --git a/public_html/data/css/style.css b/public_html/data/css/style.css index 8868c5995..18ff1ee4f 100644 --- a/public_html/data/css/style.css +++ b/public_html/data/css/style.css @@ -54,6 +54,10 @@ height: 160px; } +.nav li.multipaste_button a { + color: #fff; +} + .ajaxFeedback { display: inline-block; } -- cgit v1.2.3-24-g4f1b From b8890e5758a077e123ea9e1d5f07e55ce94d9deb Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 6 Sep 2016 14:41:50 +0200 Subject: Set minimum width for popovers This fixes some weird small-width popovers on the thumbnail history when a thumbnail is being moved around. Signed-off-by: Florian Pritz --- public_html/data/css/style.css | 1 + 1 file changed, 1 insertion(+) (limited to 'public_html/data/css/style.css') diff --git a/public_html/data/css/style.css b/public_html/data/css/style.css index 18ff1ee4f..166a00c12 100644 --- a/public_html/data/css/style.css +++ b/public_html/data/css/style.css @@ -360,6 +360,7 @@ body { word-break: break-word; word-wrap: normal; max-width: 400px; + min-width: 250px } #upload_history .popover { -- cgit v1.2.3-24-g4f1b