123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- //
- // Notifications
- // --------------------------------------------------
- // Notifications dropdowned list
- //
- //==
- .user-notifications-nav {
- .dropdown-menu {
- width: 320px;
- .dropdown-title {
- margin-bottom: 0px;
- }
- ul {
- margin: 0px;
- max-height: @line-height-computed * 8.75;
- li {
- border-bottom: 1px solid @dropdown-divider-bg;
- padding: @padding-base-vertical @padding-base-horizontal;
- &.new {
- .state-icon {
- color: @state-active;
- }
- }
- .state-icon {
- float: left;
- width: @font-size-base * 1.5;
- color: @state-default;
- }
- a {
- display: block;
- margin: 0px;
- padding: 0px;
- color: @text-color;
- &:hover {
- background: none;
- text-decoration: none;
- }
- &:active {
- background: none;
- color: @state-clicked;
- }
- }
- footer {
- padding-left: @font-size-base * 1.5;
- font-size: @font-size-small;
- a {
- display: inline;
- margin-right: @line-height-computed / 4;
- }
- }
- &.empty {
- border-bottom: none;
- padding: @padding-large-vertical @padding-base-horizontal;
- padding-bottom: @line-height-computed;
- text-align: center;
- .fa {
- display: block;
- font-size: @font-size-large * 3;
- }
- }
- }
- }
- }
- }
- // Full notifications list
- //
- //==
- .notifications-list {
- li {
- border-bottom: 1px solid @hr-border;
- overflow: auto;
- padding: (@line-height-computed / 2) 0px;
- &.new {
- .state-icon {
- color: @state-active;
- }
- }
- &:last-child {
- border-bottom: none;
- }
- .state-icon {
- float: left;
- margin-top: 2px;
- margin-right: @line-height-computed / 2;
- color: @state-default;
- font-size: @font-size-large;
- }
- .message {
- float: left;
- margin-top: 2px;
- font-size: @font-size-large;
- &:link, &:active, &:visited {
- color: @text-color;
- }
- &:hover {
- background: none;
- text-decoration: none;
- }
- &:active {
- background: none;
- color: @state-clicked;
- }
- }
- footer {
- margin-top: 5px;
- float: right;
- a {
- margin-right: @line-height-computed / 3;
- }
- }
- .read-form {
- float: right;
- margin-left: @line-height-computed;
- }
- }
- }
|