-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathdropdownIcon.html
More file actions
61 lines (61 loc) · 1.6 KB
/
Copy pathdropdownIcon.html
File metadata and controls
61 lines (61 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<div class="dropdown" ng-class="{open: $ctrl.open}">
<button ng-click="$ctrl.toggle(!$ctrl.open)" data-cy="gear-button" title="">
<i class="fa fa-user-circle"></i>
</button>
<ul class="dropdown-menu dropdown-menu-right">
<li class="theme-menu-item">
<span class="theme-menu-label">{{ 'Theme' | translate }}</span>
<div class="theme-toggle" role="group" aria-label="{{ 'Theme' | translate }}">
<button
type="button"
ng-class="{active: $ctrl.theme === 'light'}"
ng-click="$ctrl.setTheme('light')"
>
{{ 'Light' | translate }}
</button>
<button
type="button"
ng-class="{active: $ctrl.theme === 'dark'}"
ng-click="$ctrl.setTheme('dark')"
>
{{ 'Dark' | translate }}
</button>
</div>
</li>
<li role="separator" class="divider"></li>
<li>
<a
target="_blank"
rel="noopener noreferrer"
href="https://docs.brmodeloweb.com"
>
{{'Documentation' | translate}}
</a>
</li>
<li role="separator" class="divider"></li>
<li>
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/brmodeloweb/brmodelo-app/issues/new?template=requisitar-funcionalidade.md"
>
{{'Request feature' | translate}}
</a>
</li>
<li>
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/brmodeloweb/brmodelo-app/issues/new?template=reportar-problema.md"
>
{{'Report bug' | translate}}
</a>
</li>
<li role="separator" class="divider"></li>
<li title="" ng-repeat="option in $ctrl.options" ng-click="$ctrl.select(option)">
<a>
{{option.name}}
</a>
</li>
</ul>
</div>