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:
josephschorr 2016-10-20 13:36:32 -04:00 committed by GitHub
commit 67dde6e154
11 changed files with 126 additions and 21 deletions

View file

@ -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;
}

View file

@ -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;
}