Start on new tag view
This commit is contained in:
parent
581a284744
commit
afc8e95e19
103 changed files with 148505 additions and 458 deletions
|
@ -754,3 +754,136 @@
|
|||
vertical-align: middle;
|
||||
font-family: FontAwesome;
|
||||
}
|
||||
|
||||
.co-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.co-table td {
|
||||
border-bottom: 1px solid #eee;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.co-table thead td {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.co-table thead td a {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.co-table thead td:after {
|
||||
content: "\f175";
|
||||
font-family: FontAwesome;
|
||||
font-size: 12px;
|
||||
margin-left: 10px;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.co-table thead td.current:after {
|
||||
content: "\f175";
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.co-table thead td.current.reversed:after {
|
||||
content: "\f176";
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.co-table thead td.current a {
|
||||
color: #337ab7;
|
||||
}
|
||||
|
||||
.co-table .checkbox-col {
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
.co-table td.options-col {
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
.cor-checkable-menu {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.co-checkable-menu .co-checkable-menu-state {
|
||||
display: inline-block;
|
||||
margin-left: -1px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.co-checkable-menu .dropdown {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.co-checkable-item, .co-checkable-menu-state {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: pointer;
|
||||
border: 1px solid #ddd;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
|
||||
position: relative
|
||||
}
|
||||
|
||||
.co-checkable-item:after, .co-checkable-menu-state:after {
|
||||
content: "\f00c";
|
||||
font-family: FontAwesome;
|
||||
color: #ccc;
|
||||
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
left: 1px;
|
||||
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.co-checkable-menu-state.some:after {
|
||||
content: "-";
|
||||
font-size: 35px;
|
||||
top: -19px;
|
||||
left: 2px;
|
||||
}
|
||||
|
||||
.co-checkable-item:hover:after {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.co-checkable-item.checked:after, .co-checkable-menu-state.all:after, .co-checkable-menu-state.some:after {
|
||||
visibility: visible;
|
||||
color: #428bca;
|
||||
}
|
||||
|
||||
.co-table .co-checkable-row.checked {
|
||||
background: #F6FCFF;
|
||||
}
|
||||
|
||||
.co-check-bar {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-checked-actions {
|
||||
display: inline-block;
|
||||
border-left: 1px solid #eee;
|
||||
margin-left: 10px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-checked-actions .btn {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-checked-actions .btn .fa {
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-filter-box {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.co-check-bar .co-filter-box input {
|
||||
width: 300px;
|
||||
}
|
||||
|
|
Reference in a new issue