Fix role name size. TG-2113 #ready-for-test
parent
5969049de1
commit
7dd1302525
|
@ -5,7 +5,8 @@ section.admin-submenu-roles
|
||||||
nav
|
nav
|
||||||
ul
|
ul
|
||||||
li(ng-repeat="item in roles")
|
li(ng-repeat="item in roles")
|
||||||
a(href="" ng-click="ctrl.setRole(item)", ng-class="{active: role.id == item.id}") {{ item.name }}
|
a(href="" ng-click="ctrl.setRole(item)", ng-class="{active: role.id == item.id}")
|
||||||
|
span.single-role {{ item.name }}
|
||||||
span.icon.icon-arrow-right
|
span.icon.icon-arrow-right
|
||||||
|
|
||||||
div(tg-new-role)
|
div(tg-new-role)
|
||||||
|
|
|
@ -25,6 +25,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.single-role {
|
||||||
|
@include ellipsis(175px);
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
.icon {
|
.icon {
|
||||||
color: $white;
|
color: $white;
|
||||||
float: right;
|
float: right;
|
||||||
|
|
Loading…
Reference in New Issue