Start on mobilification of repo view
This commit is contained in:
parent
79caf2dab2
commit
a4cacd7307
31 changed files with 265 additions and 91 deletions
52
static/css/directives/ui/role-group.css
Normal file
52
static/css/directives/ui/role-group.css
Normal file
|
@ -0,0 +1,52 @@
|
|||
.role-group .btn {
|
||||
width: 90px;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.role-group .btn .caret {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 7px;
|
||||
}
|
||||
|
||||
.role-group .role-help-text {
|
||||
font-size: 12px;
|
||||
color: #ccc;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.role-group .btn {
|
||||
border-left: 4px solid #ccc;
|
||||
}
|
||||
|
||||
.role-group .btn.success {
|
||||
border-left-color: #5cb85c;
|
||||
}
|
||||
|
||||
.role-group .btn.primary {
|
||||
border-left-color: #337ab7;
|
||||
}
|
||||
|
||||
.role-group li a {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.role-group li a:before {
|
||||
content: "";
|
||||
border-radius: 50%;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background: #ccc;
|
||||
display: inline-block;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.role-group li.success a:before {
|
||||
background-color: #5cb85c;
|
||||
}
|
||||
|
||||
.role-group li.primary a:before {
|
||||
background-color: #337ab7;
|
||||
}
|
Reference in a new issue