diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-06-02 21:52:59 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-06-02 21:52:59 +0200 |
commit | 901b1150ffcdb3f541d6843221ba4ee3fb617751 (patch) | |
tree | f21c7f45520cdf3edd7334abecba19890c8ed7a3 /core/css/jquery.ocdialog.css | |
parent | cf71a54f5d6e08020a1a574d43f7fca6642776c9 (diff) | |
download | nextcloud-server-901b1150ffcdb3f541d6843221ba4ee3fb617751.tar.gz nextcloud-server-901b1150ffcdb3f541d6843221ba4ee3fb617751.zip |
Replacement for jquery.dialog to fit better with ownCloud design.
Diffstat (limited to 'core/css/jquery.ocdialog.css')
-rw-r--r-- | core/css/jquery.ocdialog.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css new file mode 100644 index 00000000000..6342780aa95 --- /dev/null +++ b/core/css/jquery.ocdialog.css @@ -0,0 +1,49 @@ +.oc-dialog { + background: white; + color: #333333; + border-radius: 3px; box-shadow: 0 0 7px #888888; + padding: 15px; + z-index: 1000; + font-size: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + min-width: 200px; +} +.oc-dialog-title { + background: white; + font-weight: bold; + font-size: 110%; + margin-bottom: 10px; +} +.oc-dialog-content { + z-index: 1000; + background: white; + overflow-y: auto; +} +.oc-dialog-separator { +} +.oc-dialog-buttonrow { + background: white; + float: right; + position: relative; + bottom: 0; + display: block; + margin-top: 10px; +} + +.oc-dialog-close { + position:absolute; + top:7px; right:7px; + height:20px; width:20px; + background:url('../img/actions/delete.svg') no-repeat center; +} + +.oc-dialog-dim { + background-color: #000; + opacity: .20;filter:Alpha(Opacity=20); + z-index: 999; + position: absolute; + top: 0; left: 0; + width: 100%; height: 100%; +} |