Commit 194dc810f8f85a44b6fbe57bc683914215d35678
1 parent
c81a594f
Bug #7963: CI & CA > Change the tooltip.
The tooltip class is moved to main.css to acheive uniformity in the project and remove duplicacy of definning it.
Showing
3 changed files
with
14 additions
and
10 deletions
400-SOURCECODE/AIAHTML5.Web/app/views/da/da-view.html
400-SOURCECODE/AIAHTML5.Web/app/widget/MainMenu.html
... | ... | @@ -14,8 +14,8 @@ |
14 | 14 | <!--<li role="presentation" class="active" title="Image View"><i class=" fa fa-image txt-white cur-pot" href="#grid-view" aria-controls="grid-view" role="tab" data-toggle="tab"></i></li> |
15 | 15 | <li role="presentation" title="List View"><i class="fa fa-list-alt txt-white cur-pot" href="#list-view" aria-controls="list-view" role="tab" data-toggle="tab"></i></li>--> |
16 | 16 | |
17 | - <li role="presentation" ng-class="{'active':activeTab==1}" title="Image View"><i class=" fa fa-image txt-white cur-pot" ng-click="setActiveTab(1)" href="#grid-view" aria-controls="grid-view" role="tab" data-toggle="tab"></i></li> | |
18 | - <li role="presentation" ng-class="{'active':activeTab==2}" title="List View"><i class="fa fa-list-alt txt-white cur-pot" ng-click="setActiveTab(2)" href="#list-view" aria-controls="list-view" role="tab" data-toggle="tab"></i></li> | |
17 | + <li role="presentation" class="tooltip-custom" ng-class="{'active':activeTab==1}" title="Image View"><i class=" fa fa-image txt-white cur-pot" ng-click="setActiveTab(1)" href="#grid-view" aria-controls="grid-view" role="tab" data-toggle="tab"></i></li> | |
18 | + <li role="presentation" class="tooltip-custom" ng-class="{'active':activeTab==2}" title="List View"><i class="fa fa-list-alt txt-white cur-pot" ng-click="setActiveTab(2)" href="#list-view" aria-controls="list-view" role="tab" data-toggle="tab"></i></li> | |
19 | 19 | |
20 | 20 | </ul> |
21 | 21 | </div> |
... | ... | @@ -206,3 +206,8 @@ |
206 | 206 | }); |
207 | 207 | }); |
208 | 208 | </script> |
209 | +<script> | |
210 | + $(".tooltip-custom").tooltip({ | |
211 | + tooltipClass: 'customTooltip' | |
212 | + }); | |
213 | +</script> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css
... | ... | @@ -160,6 +160,13 @@ footer.dark { |
160 | 160 | .space-top50 { |
161 | 161 | margin-top: 50px; |
162 | 162 | } |
163 | +/*Custom ToolTip In AIA*/ | |
164 | +.customTooltip { | |
165 | + background: #333 !important; | |
166 | + color: #fff !important; | |
167 | + /*opacity: 0.9 !important;*/ | |
168 | + } | |
169 | + | |
163 | 170 | /*.tools { |
164 | 171 | background: #eeeeee none repeat scroll 0 0; |
165 | 172 | border: 1px solid #c1c1c1; | ... | ... |