forked from jigahertz/orgv2_custom_buttons
-
Notifications
You must be signed in to change notification settings - Fork 3
/
custom_tab_buttons.html
41 lines (40 loc) · 1.21 KB
/
custom_tab_buttons.html
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
<style>
.cbutton {
border-radius: 20px;
border: 4px solid;
border-color: #cc7b19;
padding: 0px;
width: auto;
height: auto;
background-color: #cc7b19;
position: relative;
text-align: center;
}
.cbutton:hover { opacity: .8; }
.cbuttontitle { color: #fff; }
</style>
<div class="row">
<div class="col-lg-2 col-sm-2"></div>
<div class="col-lg-4 col-sm-4 streamingButtonCustom">
<div class="panel cbutton"><a onclick="tabActions(event,'TAB-NAME',1);" href="#">
<div class="waves-effect waves-light btn cbuttontitle">CUSTOM BUTTON TEXT
<div class="pull-right">
<!--<i class="ti-search"></i>-->
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-4 searchButtonCustom">
<div class="panel cbutton"><a onclick="tabActions(event,'TAB-NAME',1);" href="#">
<div class="waves-effect waves-light btn cbuttontitle">CUSTOM BUTTON TEXT
<div class="pull-right">
<!--<i class="ti-search"></i>-->
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-2 col-sm-2"></div>
<!-- /.col-lg-4 -->
</div>