source: RedSur/app/assets/stylesheets/leftnavbar.scss @ 6b8adc0

modelo_minuta
Last change on this file since 6b8adc0 was 1b91e02, checked in by aosorio <aosorio@…>, 8 years ago

Version para desarrollo local

  • Property mode set to 100755
File size: 1.1 KB
Line 
1#leftNavBar {
2
3  .avatar {
4    width: 50px;
5    height: 50px;
6  }
7
8  color: #222222;
9
10  ul {
11    margin: 0px;
12    padding: 0px;
13    list-style: none;
14  }
15
16  a {
17    color: $link-grey;
18    font-weight: bold;
19    text-decoration: none;
20  }
21
22  .selected { color: $black; }
23  .selected a { color: $black; }
24
25  .hoverable {
26    display: block;
27    margin-right: 6px;
28    padding: 4px;
29    &:hover { background-color: $background-blue; }
30
31    .label {
32      background-color: $background-grey;
33      color: $text-grey;
34    }
35  }
36
37  .selectable {
38    display: block;
39    margin-left: 21px;
40    overflow: hidden;
41    text-overflow: ellipsis;
42  }
43
44  #aspects_list, #tags_list {
45    .hoverable > .action {
46      visibility: hidden;
47      float: right;
48      margin: 0 3px;
49    }
50
51    .hoverable:hover  > .action {
52      visibility: visible;
53    }
54  }
55
56  #aspects_list {
57    .entypo.check {
58      float: left;
59      visibility: hidden;
60      &.selected { visibility: visible; }
61    }
62
63    .selected + a {
64      color: #333333;
65    }
66  }
67
68  #tags_list {
69    .delete_tag_following {
70      font-size: 20px;
71      line-height: 15px;
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.