Commit
9063e94d098efacd98bdfa531d8f980afa86f61f
Exists in
master
and in
38 other branches
activities_block, angular2, btn-new-post, cleaning-the-house, cosmetic_changes_people_and_communities_block, coverage, edit-blocks, edit-header-footer, env-tags-block, forgot_password, header_and_footer, helpers-evolution, layout_support, list_articles_on_blog, loading-indicator-component, login_modal, login_modal_improve, person_info_block, production, profile-article-resolvers, profile-blocks-sass, profile-view, profile_description_block_component, profile_page_improvements, profile_search, recent-activities, remove-article-confirmation, responsive-fixes, seo, signup_page, skin-small-change, staging, tags-block, theme-skin-yellow, translations, typescript, updated_signup_page, users_profile_page
Refactor styles
| @@ -0,0 +1,11 @@ |
| @@ -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
| +} |
| @@ -0,0 +1,15 @@ |
| @@ -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
| +} |
| @@ -30,21 +30,13 @@ $fa-font-path: "../../bower_components/font-awesome/fonts"; |
| @@ -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
| /** |
1
| -<div class="panel panel-default" > |
1
| +<div class="panel panel-default block" > |
2
| <div class="panel-heading" ng-show="block.title"> |
2
| <div class="panel-heading" ng-show="block.title"> |
3
| <h3 class="panel-title">{{block.title}}</h3> |
3
| <h3 class="panel-title">{{block.title}}</h3> |
4
| </div> |
4
| </div> |