diff options
author | Sanmugasundaram K | 2015-05-07 15:24:25 +0530 |
---|---|---|
committer | Sanmugasundaram K | 2015-05-07 15:24:25 +0530 |
commit | 30d80e37ee5604196f465c2b2c73b1d1a4f11f79 (patch) | |
tree | fc4f4d803fd177fb17927cd94d6ffd08f46e38fe /static/website/css | |
parent | 8f29c847f23aef4b21a803766064d59289603196 (diff) | |
download | spoken-tutorial-forums-30d80e37ee5604196f465c2b2c73b1d1a4f11f79.tar.gz spoken-tutorial-forums-30d80e37ee5604196f465c2b2c73b1d1a4f11f79.tar.bz2 spoken-tutorial-forums-30d80e37ee5604196f465c2b2c73b1d1a4f11f79.zip |
question delete, hide, show feature
Diffstat (limited to 'static/website/css')
-rw-r--r-- | static/website/css/main.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/static/website/css/main.css b/static/website/css/main.css index 5587da7..054f4d2 100644 --- a/static/website/css/main.css +++ b/static/website/css/main.css @@ -194,7 +194,7 @@ table .title a { .hideme { display: none; } -.saving, .saved { +.saving, .saved, .deleted, .hide-qmsg { position: fixed; z-index: 2000; left: 45%; @@ -215,6 +215,17 @@ table .title a { .saved { background: lightgreen; } +.deleted, .hide-qmsg{ + background: #5bc0de; + color: white; +} +.question-midify{ + overflow: hidden; +} +.question-midify .delete-question, .question-midify .edit, .question-midify .save, .question-midify .hide-question{ + float: left; + margin: 0 3px; +} #content .answer { position: relative; border-bottom: 1px solid #f5f5f5; |