Commit 3cb3639ae2c5c02d0d3dcf31becba37914a885da
1 parent
9dccfcdc
Exists in
master
and in
3 other branches
modified card header icons
Showing
3 changed files
with
35 additions
and
3 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
... | ... | @@ -594,6 +594,20 @@ a:focus { |
594 | 594 | .subscribe-subject { |
595 | 595 | border:none; |
596 | 596 | } |
597 | + | |
598 | +.subject-card-items { | |
599 | + padding-right: 0px; | |
600 | +} | |
601 | +.subject-card-items i{ | |
602 | + font-size: 25px !important; | |
603 | + margin-top: 6px; | |
604 | + margin-right: 10px; | |
605 | + color: black !important; | |
606 | +} | |
607 | + | |
608 | +.subject-card-items i:hover{ | |
609 | + color: white !important; | |
610 | +} | |
597 | 611 | /* subjects app ends */ |
598 | 612 | |
599 | 613 | /* Themes */ |
... | ... | @@ -826,4 +840,22 @@ a.add-row { |
826 | 840 | |
827 | 841 | .add_resource ul { |
828 | 842 | width: 100%; |
829 | -} | |
830 | 843 | \ No newline at end of file |
844 | +} | |
845 | + | |
846 | +/*topics app starts*/ | |
847 | + | |
848 | +.topic-card-items { | |
849 | + padding-right: 0px; | |
850 | +} | |
851 | +.topic-card-items i{ | |
852 | + font-size: 25px !important; | |
853 | + margin-top: 6px; | |
854 | + margin-right: 10px; | |
855 | + color: black !important; | |
856 | +} | |
857 | + | |
858 | +.topic-card-items i:hover{ | |
859 | + color: white !important; | |
860 | +} | |
861 | + | |
862 | +/*topic app ends*/ | |
831 | 863 | \ No newline at end of file | ... | ... |
subjects/templates/subjects/subject_card.html
... | ... | @@ -19,7 +19,7 @@ |
19 | 19 | </a> |
20 | 20 | </h4> |
21 | 21 | |
22 | - <div class="col-md-5 pull-right category-card-items"> | |
22 | + <div class="col-md-5 pull-right subject-card-items"> | |
23 | 23 | {% if has_subject_permissions %} |
24 | 24 | <a href="" id="moreActions" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> |
25 | 25 | <i class="fa fa-ellipsis-v" aria-hidden="true"></i> | ... | ... |
topics/templates/resources/list.html
... | ... | @@ -20,7 +20,7 @@ |
20 | 20 | </h4> |
21 | 21 | |
22 | 22 | {% if has_subject_permissions %} |
23 | - <div class="pull-right category-card-items"> | |
23 | + <div class="pull-right topic-card-items"> | |
24 | 24 | <a><i class="fa fa-arrows" aria-hidden="true"></i></a> |
25 | 25 | <span class="btn-group pull-right"> |
26 | 26 | <button class="btn btn-sm btn_menu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ... | ... |