diff options
author | Aaron Parecki <aaron@parecki.com> | 2017-01-04 15:26:51 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2017-01-04 15:26:51 -0800 |
commit | acafb9192a6402a3f3d60d5e6af11cb4576fc96c (patch) | |
tree | d70737a0ee528cff04673ff6b66a1667fbd302bf /public/editor-files/style.css | |
parent | e7fe68f73e441778f80683383ddb2ffe7a48f85c (diff) |
add tags, slug and status field to quill editor
Diffstat (limited to 'public/editor-files/style.css')
-rw-r--r-- | public/editor-files/style.css | 50 |
1 files changed, 24 insertions, 26 deletions
diff --git a/public/editor-files/style.css b/public/editor-files/style.css index 9bb8042..e4099ee 100644 --- a/public/editor-files/style.css +++ b/public/editor-files/style.css @@ -22,6 +22,10 @@ h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; } img { border: 0; } + +/* ************************************** */ + + .micropub-html-warning { max-width: 600px; margin-left: auto; @@ -49,6 +53,8 @@ img { border: 0; } float: right; } + + /* ************************************** */ /* Toolbar */ @@ -120,15 +126,23 @@ img { border: 0; } input.form-field-small { height: 24px; - margin-top: 1px; + margin-top: 2px; font-size: 13px; color: #51a1a8; padding: 0 10px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - border-radius: 10px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; border: 1px #93dee5 solid; } +select.form-select-small { + border-radius: 6px; + border: 1px #93dee5 solid; + height: 24px; + margin-top: 2px; + font-size: 13px; + color: #51a1a8; +} .publish-dropdown { position: fixed; @@ -165,6 +179,10 @@ input.form-field-small { .publish-dropdown .dropdown-content { padding: 9px; } +.publish-dropdown .dropdown-content, +.publish-dropdown .dropdown-content a { + color: #51a1a8; +} .publish-dropdown input { font-family: sans-serif; } @@ -182,30 +200,10 @@ pre#publish-error-debug { display: none; } -/* ************************************** */ -/* App Cache */ - -#new_version_available { - display: none; - position: fixed; - z-index: 1000; - bottom: 0; - left: 0; - right: 0; - background: rgba(246,206,217,0.3); -} -#new_version_available .inner { - padding: 10px; - width: 600px; - margin: 0 auto; - text-align: center; - font-weight: bold; - color: #cf224f; - font-size: 14px; - font-family: sans-serif; +.small { + font-size: 0.8em; } - /* ************************************** */ /* Editor CSS */ |