Get a nice dropdown of tags working on the visualize tags tab
This commit is contained in:
parent
be9906167a
commit
5741656411
8 changed files with 431 additions and 18 deletions
|
@ -26,3 +26,9 @@
|
|||
margin-right: 8px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.repo-panel-changes .multiselect-dropdown {
|
||||
display: inline-block;
|
||||
margin-left: 10px;
|
||||
min-width: 200px;
|
||||
}
|
42
static/css/directives/ui/multiselect-dropdown.css
Normal file
42
static/css/directives/ui/multiselect-dropdown.css
Normal file
|
@ -0,0 +1,42 @@
|
|||
.multiselect-dropdown .dropdown,
|
||||
.multiselect-dropdown .dropdown .btn-dropdown,
|
||||
.multiselect-dropdown .dropdown .dropdown-menu {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .dropdown .btn-dropdown {
|
||||
text-align: left;
|
||||
position: relative;
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .dropdown .btn-dropdown .caret {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .none {
|
||||
color: #ccc;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .dropdown-menu {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .dropdown-menu .menu-item {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .dropdown-menu .menu-item .co-checkable-item {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .dropdown-menu .menu-item .menu-item-template {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.multiselect-dropdown .selected-item-template {
|
||||
margin-right: 10px;
|
||||
}
|
Reference in a new issue