diff options
author | CruiseDevice | 2019-01-09 15:26:18 +0530 |
---|---|---|
committer | CruiseDevice | 2019-01-28 12:32:15 +0530 |
commit | f72f1b2cc06821cd08e279a346d3d05b92896986 (patch) | |
tree | d3b03b75d4785745bfd8487cb924188af63077d8 /yaksh | |
parent | 4abe98d8b6401ec4d5a69e5343ab1d7092e994c7 (diff) | |
download | online_test-f72f1b2cc06821cd08e279a346d3d05b92896986.tar.gz online_test-f72f1b2cc06821cd08e279a346d3d05b92896986.tar.bz2 online_test-f72f1b2cc06821cd08e279a346d3d05b92896986.zip |
Change text color of button and nav-tab to nav-pills
- Change text color of next and previous button to white.
- Change nav-tab to nav-pills in design_questionpaper.html .
Diffstat (limited to 'yaksh')
-rw-r--r-- | yaksh/static/yaksh/css/question_paper_creation.css | 3 | ||||
-rw-r--r-- | yaksh/templates/yaksh/design_questionpaper.html | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/yaksh/static/yaksh/css/question_paper_creation.css b/yaksh/static/yaksh/css/question_paper_creation.css index 5f9f388..6cf0887 100644 --- a/yaksh/static/yaksh/css/question_paper_creation.css +++ b/yaksh/static/yaksh/css/question_paper_creation.css @@ -87,6 +87,9 @@ body { #random-added hr { margin: 5px 0 4px; } + #fixed-next, #random-prev, #random-next, #finish-prev{ + color: white; +} .qcard { position: relative; background: #ffffff; diff --git a/yaksh/templates/yaksh/design_questionpaper.html b/yaksh/templates/yaksh/design_questionpaper.html index be19dbe..40d2ab6 100644 --- a/yaksh/templates/yaksh/design_questionpaper.html +++ b/yaksh/templates/yaksh/design_questionpaper.html @@ -35,9 +35,9 @@ select <input type=hidden name="is_active" id="is_active" value="{{ state }}"> <center><b>Manual mode to design the {{lang}} Question Paper</center><br> <div class = "tab-base"> - <ul class="nav nav-tabs tabs" role="tablist" data-tabs="tabs" id = "ulTab"> - <li class="active" id="fixed-tab"> - <a data-toggle="tab" href="#fixed-questions" class = "nav-link" id="fixed"> + <ul class="nav nav-pills tabs"> + <li class="" id="fixed-tab"> + <a data-toggle="tab" href="#fixed-questions" class = "nav-link active" id="fixed"> STEP 1<br> Add Fixed Questions </a> @@ -121,7 +121,7 @@ select {% endif %} </div> <br /><br /> - <button id="add-fixed" name="add-fixed" class="btn small primary pull-right" type="submit">Add to paper</button> + <button id="add-fixed" name="add-fixed" class="btn small btn-primary pull-right" type="submit">Add to paper</button> </div> </div> <div class="col-md-6"> |