diff options
author | Anna Stakhova <anna@rspamd.com> | 2016-11-26 18:43:02 +0000 |
---|---|---|
committer | Anna Stakhova <anna@rspamd.com> | 2016-11-26 18:43:02 +0000 |
commit | a3f1ef5835fc4cb385091b1e450832d69d1bf983 (patch) | |
tree | 7a5cbe162bea7a6ee05cf5dfec771e72520e5edd /interface/css | |
parent | a96a08e35a050bc0f107fee990e5bbb4321f37b3 (diff) | |
download | rspamd-a3f1ef5835fc4cb385091b1e450832d69d1bf983.tar.gz rspamd-a3f1ef5835fc4cb385091b1e450832d69d1bf983.zip |
Fix scan clear btn
Fix scan clear btn
Add upload btn (for future using)
Improve navbar right buttons
Diffstat (limited to 'interface/css')
-rw-r--r-- | interface/css/rspamd.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 5ab6a63e1..be5709a37 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -235,7 +235,6 @@ td.maps-cell { } .spinner { background:url('../img/spinner.gif') no-repeat -100px; - padding-left:25px; } .loading .spinner { background-position:0 50%; @@ -563,3 +562,23 @@ td.maps-cell { .scorebar-ham { background: rgba(100, 230, 80, 0.1) } +/*btn-file for upload file button*/ +.btn-file { + position: relative; + overflow: hidden; +} +.btn-file input[type=file] { + position: absolute; + top: 0; + right: 0; + min-width: 100%; + min-height: 100%; + font-size: 100px; + text-align: right; + filter: alpha(opacity=0); + opacity: 0; + outline: none; + background: white; + cursor: inherit; + display: block; +} |