Commit 9063e94d098efacd98bdfa531d8f980afa86f61f

Authored by Victor Costa
1 parent 6fd5a048

Refactor styles

src/app/components/noosfero-blocks/block.scss 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +.block {
  2 + .panel-title {
  3 + font-size: 14px;
  4 + font-weight: bold;
  5 + color: rgb(30, 57, 72);
  6 + }
  7 + .panel-heading {
  8 + background-color: transparent;
  9 + border: 0;
  10 + }
  11 +}
... ...
src/app/components/noosfero-blocks/link-list/link-list.scss 0 → 100644
... ... @@ -0,0 +1,15 @@
  1 +.icon-event {
  2 + @extend .fa-calendar;
  3 +}
  4 +.icon-photos {
  5 + @extend .fa-photo;
  6 +}
  7 +.icon-edit {
  8 + @extend .fa-edit;
  9 +}
  10 +.icon-ok {
  11 + @extend .fa-check;
  12 +}
  13 +.icon-send {
  14 + @extend .fa-send-o;
  15 +}
... ...
src/app/index.scss
... ... @@ -30,21 +30,13 @@ $fa-font-path: "../../bower_components/font-awesome/fonts";
30 30 }
31 31 }
32 32  
33   -//FIXME move to a separated file
34   -.icon-event {
35   - @extend .fa-calendar;
  33 +.col-md-2-5 {
  34 + @extend .col-md-3;
  35 + width: 20.83%;
36 36 }
37   -.icon-photos {
38   - @extend .fa-photo;
39   -}
40   -.icon-edit {
41   - @extend .fa-edit;
42   -}
43   -.icon-ok {
44   - @extend .fa-check;
45   -}
46   -.icon-send {
47   - @extend .fa-send-o;
  37 +
  38 +body {
  39 + background-color: #f5f8fa;
48 40 }
49 41  
50 42 /**
... ...
src/app/views/profile/block.html
1   -<div class="panel panel-default" >
  1 +<div class="panel panel-default block" >
2 2 <div class="panel-heading" ng-show="block.title">
3 3 <h3 class="panel-title">{{block.title}}</h3>
4 4 </div>
... ...