-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectorTemas.php
More file actions
51 lines (50 loc) · 1.73 KB
/
SelectorTemas.php
File metadata and controls
51 lines (50 loc) · 1.73 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
<!-- SELECTOR DE TEMAS -->
<div id="switcher">
<div class="switcher box-color dark-white text-color" id="sw-theme">
<a href ui-toggle-class="active" target="#sw-theme" class="box-color dark-white text-color sw-btn">
<i class="fa fa-gear"></i>
</a>
<div class="box-header">
<h2>Theme Switcher</h2>
</div>
<div class="box-divider"></div>
<div class="box-body">
<p class="hidden-md-down">
<label class="md-check m-y-xs" data-target="folded">
<input type="checkbox">
<i class="green"></i>
<span class="hidden-folded">Folded Aside</span>
</label>
<label class="md-check m-y-xs" data-target="boxed">
<input type="checkbox">
<i class="green"></i>
<span class="hidden-folded">Boxed Layout</span>
</label>
<label class="m-y-xs pointer" ui-fullscreen>
<span class="fa fa-expand fa-fw m-r-xs"></span>
<span>Fullscreen Mode</span>
</label>
</p>
<p>Themes:</p>
<div data-target="bg" class="row no-gutter text-u-c text-center _600 clearfix">
<label class="p-a col-sm-6 light pointer m-0">
<input type="radio" name="theme" value="" hidden>
Light
</label>
<label class="p-a col-sm-6 grey pointer m-0">
<input type="radio" name="theme" value="grey" hidden>
Grey
</label>
<label class="p-a col-sm-6 dark pointer m-0">
<input type="radio" name="theme" value="dark" hidden>
Dark
</label>
<label class="p-a col-sm-6 black pointer m-0">
<input type="radio" name="theme" value="black" hidden>
Black
</label>
</div>
</div>
</div>
</div>
<!-- / -->