1234567891011121314151617181920212223242526272829303132 |
- // User Alerts
- // -------------------------
- .user-alerts {
- td {
- vertical-align: middle;
- &.alert-icon {
- color: @itemOldColor;
- font-size: @fontSizeLarge;
- &.alert-new {
- color: @itemNewColor;
- }
- }
- &.alert-message {
- color: @gray;
- font-size: @baseFontSize * 1.2;
- a:link, a:visited {
- color: @textColor;
- font-weight: bold;
- }
- }
- &.alert-date {
- color: @grayLight;
- text-align: right;
- }
- }
- }
|