mirror of
https://github.com/bitwarden/web
synced 2025-12-16 16:23:31 +00:00
no org callout on sidebar
This commit is contained in:
@@ -99,8 +99,14 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="subsection">
|
<div class="subsection">
|
||||||
<ul class="list-inline">
|
<div ng-if="!orgs.length" class="hidden-collapsed">
|
||||||
<li ng-repeat="org in orgs | orderBy: ['name']">
|
<p>You do not belong to any organizations.</p>
|
||||||
|
<a ui-sref="backend.user.settingsCreateOrg" class="btn btn-default btn-flat btn-block">
|
||||||
|
Create an Organization
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<ul class="list-inline" ng-if="orgs.length">
|
||||||
|
<li ng-repeat="org in orgs | orderBy: ['name'] track by org.id">
|
||||||
<a href="javascript:void(0)" ng-click="viewOrganization(org)">
|
<a href="javascript:void(0)" ng-click="viewOrganization(org)">
|
||||||
<letter-avatar data="{{org.name}}" avclass="img-responsive img-rounded" round="false"
|
<letter-avatar data="{{org.name}}" avclass="img-responsive img-rounded" round="false"
|
||||||
avheight="40" avwidth="40" bgcolor="#1a2226"></letter-avatar>
|
avheight="40" avwidth="40" bgcolor="#1a2226"></letter-avatar>
|
||||||
|
|||||||
@@ -44,14 +44,30 @@ h1, h2, h3, h4, h5, h6,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar .subsection {
|
.sidebar {
|
||||||
padding: 10px;
|
color: #bbbbbb;
|
||||||
|
|
||||||
|
a.btn {
|
||||||
|
color: @btn-default-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subsection {
|
||||||
|
padding: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-collapse .sidebar .list-inline li {
|
.sidebar-collapse {
|
||||||
padding-right: 0;
|
.sidebar .list-inline li {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hidden-collapsed {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
form div.validation-errors ul {
|
form div.validation-errors ul {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
|
|||||||
Reference in New Issue
Block a user