Merge pull request #1852 from coreos-inc/underscore_orgs
Better handling of namespace validation to fix a number of issues
This commit is contained in:
commit
67dde6e154
11 changed files with 126 additions and 21 deletions
|
@ -1487,6 +1487,12 @@ a:focus {
|
|||
font-size: 18px;
|
||||
}
|
||||
|
||||
.co-alert.thin:after {
|
||||
top: 9px;
|
||||
font-size: 13px;
|
||||
left: 19px;
|
||||
}
|
||||
|
||||
.co-alert-popin-warning {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
|
|
@ -94,4 +94,16 @@
|
|||
|
||||
.user-setup-element .user-footer-links a:last-child:after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.user-setup-element .expandable {
|
||||
height: 0px;
|
||||
transition: height ease-in-out 250ms;
|
||||
margin-top: 16px;
|
||||
margin-bottom: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.user-setup-element .expandable.expanded {
|
||||
height: 60px;
|
||||
}
|
Reference in a new issue