diff options
| author | 2014-10-02 15:02:42 +0200 | |
|---|---|---|
| committer | 2014-10-02 15:02:42 +0200 | |
| commit | 6effa82cef4ea8fd98178e72b270de6ea4f9f80f (patch) | |
| tree | 0afa05e2266e9ac786764f94fe3888d2c6b6b832 /p/themes/base-theme/template.css | |
| parent | 50f07febaed5e839d4e7d56a664c8a208bc2aaf5 (diff) | |
Improve drag and drop
- Refactoring
- Better design
- Item doesn't disappear if action is not completed
See https://github.com/marienfressinaud/FreshRSS/issues/646
Diffstat (limited to 'p/themes/base-theme/template.css')
| -rw-r--r-- | p/themes/base-theme/template.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index e6c832ee4..06874c9fe 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -304,6 +304,10 @@ a.btn { .box .box-content .item { display: block; } +.box .box-content .item.disabled { + text-align: center; + font-style: italic; +} .box .box-content-centered { padding: 30px 5px; @@ -313,6 +317,14 @@ a.btn { margin: 20px 0 0; } +/*=== Draggable */ +.drag-hover { + margin: 0 0 5px; + border-bottom: 2px solid #ccc; +} +[draggable=true] { + cursor: grab; +} /*=== STRUCTURE */ /*===============*/ |
