1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //
- // Username History
- // --------------------------------------------------
- .username-history {
- .username-change-avatar {
- float: left;
- a, span {
- margin-right: @line-height-computed / 2;
- img {
- width: 42px;
- height: 42px;
- }
- }
- }
- .empty-message {
- text-align: center;
- }
- .username-change {
- overflow: auto;
- span {
- display: block;
- float: left;
- }
- .material-icon {
- margin: 0px @font-size-base / 2;
- position: relative;
- top: 4px;
- }
- }
- .username-change-date {
- color: @text-muted;
- font-size: @font-size-small;
- }
- }
- // Full displays
- @media screen and (min-width: @screen-md-min) {
- .username-history {
- li {
- display: block;
- overflow: auto;
- }
- .username-change-avatar {
- a, span {
- img {
- width: 18px;
- height: 18px;
- position: relative;
- bottom: 1px;
- }
- }
- }
- .username-change-author {
- float: left;
- width: 30%;
- }
- .username-change {
- float: left;
- width: 40%;
- }
- .username-change-date {
- float: left;
- width: 20%;
- }
- &.ui-ready {
- .username-change-date {
- position: relative;
- top: 2px;
- }
- }
- }
- }
|