Commit ec28af3164955d456ec2d87062d45301a73eb9de
1 parent
70820f22
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
Add block store css in core
Showing
2 changed files
with
115 additions
and
115 deletions
Show diff stats
public/designs/themes/noosfero/block_store.css
| ... | ... | @@ -1,115 +0,0 @@ |
| 1 | -#block-types { | |
| 2 | - height: 100px; | |
| 3 | -} | |
| 4 | - | |
| 5 | -#block-types-container { | |
| 6 | - margin: 0 60px; | |
| 7 | -} | |
| 8 | - | |
| 9 | -.block-types-group { | |
| 10 | - display: none; | |
| 11 | - position: absolute; | |
| 12 | - min-width: 800px; | |
| 13 | -} | |
| 14 | - | |
| 15 | -#block-types-navigation a#next { | |
| 16 | - float: right; | |
| 17 | -} | |
| 18 | - | |
| 19 | -/*tirando a borda do colorbox se puder configurar para não ter me avise*/ | |
| 20 | -r, | |
| 21 | -#cboxTopLeft, | |
| 22 | -#cboxTopRight, | |
| 23 | -#cboxMiddleLeft, | |
| 24 | -#cboxContent, | |
| 25 | -#cboxMiddleRight, | |
| 26 | -#cboxBottomCenter, | |
| 27 | -#cboxBottomLeft, | |
| 28 | -#cboxBottomRight | |
| 29 | - { background-image: none; } | |
| 30 | - | |
| 31 | -/*background do colorbox*/ | |
| 32 | -#cboxLoadedContent { | |
| 33 | - background-color: #f5f5f5; | |
| 34 | - border-radius: 20px; | |
| 35 | -} | |
| 36 | - | |
| 37 | -#block-types .block-type { | |
| 38 | - min-height: 92px; | |
| 39 | - border: 0px solid #AAA; | |
| 40 | - margin: 0px; | |
| 41 | - padding: 0px; | |
| 42 | - text-align: center; | |
| 43 | - height: auto; | |
| 44 | - float: none; | |
| 45 | - display: inline-block; | |
| 46 | - overflow: auto; | |
| 47 | - width: 112px; | |
| 48 | - cursor: move; | |
| 49 | - vertical-align: top; | |
| 50 | -} | |
| 51 | - | |
| 52 | -#block-types .block-type:hover { | |
| 53 | - box-shadow: 0px 0px 0px 2px #FFF, | |
| 54 | - 0px 0px 0px 2px #FFF, | |
| 55 | - 0px 0px 10px rgba(0,0,0,0.6); | |
| 56 | - outline: none; | |
| 57 | -} | |
| 58 | - | |
| 59 | -#block-types .button-bar { | |
| 60 | - margin: 0; | |
| 61 | - display: none; | |
| 62 | - position: absolute; | |
| 63 | - right: 0%; | |
| 64 | - border: 0px solid #AAA; | |
| 65 | - margin: 0px; | |
| 66 | - padding: 0px; | |
| 67 | -} | |
| 68 | - | |
| 69 | -#block-types .block-type:hover .button-bar { | |
| 70 | - display: inline; | |
| 71 | -} | |
| 72 | - | |
| 73 | -#block-info-container { | |
| 74 | - width: 770px; | |
| 75 | - padding: 15px; | |
| 76 | - color: #444; | |
| 77 | -} | |
| 78 | - | |
| 79 | -#block-info-container #block-info-icon { | |
| 80 | - float: left; | |
| 81 | - padding-right: 10px; | |
| 82 | -} | |
| 83 | - | |
| 84 | -#block-info-container #block-info-header { | |
| 85 | - display: inline-block; | |
| 86 | - float: left; | |
| 87 | -} | |
| 88 | - | |
| 89 | -#block-info-container #block-info-header h1 { | |
| 90 | - display: inline-block; | |
| 91 | - margin: 0; | |
| 92 | - font-weight: normal; | |
| 93 | - font-family: "Arial Black", Liberation Sans, Arial, sans-serif; | |
| 94 | -} | |
| 95 | - | |
| 96 | -#block-info-container h2 { | |
| 97 | - margin: 0; | |
| 98 | - margin-top: 10px; | |
| 99 | - font-weight: normal; | |
| 100 | - font-family: "Arial Black", Liberation Sans, Arial, sans-serif; | |
| 101 | -} | |
| 102 | - | |
| 103 | -#block-info-container p { | |
| 104 | - margin: 0; | |
| 105 | -} | |
| 106 | - | |
| 107 | -#block-info-images { | |
| 108 | - clear: both; | |
| 109 | - overflow-x: auto; | |
| 110 | - padding-top: 15px; | |
| 111 | -} | |
| 112 | - | |
| 113 | -#block-info-description { | |
| 114 | - margin-top: 20px; | |
| 115 | -} |
| ... | ... | @@ -0,0 +1,115 @@ |
| 1 | +#block-types { | |
| 2 | + height: 100px; | |
| 3 | +} | |
| 4 | + | |
| 5 | +#block-types-container { | |
| 6 | + margin: 0 60px; | |
| 7 | +} | |
| 8 | + | |
| 9 | +.block-types-group { | |
| 10 | + display: none; | |
| 11 | + position: absolute; | |
| 12 | + min-width: 800px; | |
| 13 | +} | |
| 14 | + | |
| 15 | +#block-types-navigation a#next { | |
| 16 | + float: right; | |
| 17 | +} | |
| 18 | + | |
| 19 | +/*tirando a borda do colorbox se puder configurar para não ter me avise*/ | |
| 20 | +r, | |
| 21 | +#cboxTopLeft, | |
| 22 | +#cboxTopRight, | |
| 23 | +#cboxMiddleLeft, | |
| 24 | +#cboxContent, | |
| 25 | +#cboxMiddleRight, | |
| 26 | +#cboxBottomCenter, | |
| 27 | +#cboxBottomLeft, | |
| 28 | +#cboxBottomRight | |
| 29 | + { background-image: none; } | |
| 30 | + | |
| 31 | +/*background do colorbox*/ | |
| 32 | +#cboxLoadedContent { | |
| 33 | + background-color: #f5f5f5; | |
| 34 | + border-radius: 20px; | |
| 35 | +} | |
| 36 | + | |
| 37 | +#block-types .block-type { | |
| 38 | + min-height: 92px; | |
| 39 | + border: 0px solid #AAA; | |
| 40 | + margin: 0px; | |
| 41 | + padding: 0px; | |
| 42 | + text-align: center; | |
| 43 | + height: auto; | |
| 44 | + float: none; | |
| 45 | + display: inline-block; | |
| 46 | + overflow: auto; | |
| 47 | + width: 112px; | |
| 48 | + cursor: move; | |
| 49 | + vertical-align: top; | |
| 50 | +} | |
| 51 | + | |
| 52 | +#block-types .block-type:hover { | |
| 53 | + box-shadow: 0px 0px 0px 2px #FFF, | |
| 54 | + 0px 0px 0px 2px #FFF, | |
| 55 | + 0px 0px 10px rgba(0,0,0,0.6); | |
| 56 | + outline: none; | |
| 57 | +} | |
| 58 | + | |
| 59 | +#block-types .button-bar { | |
| 60 | + margin: 0; | |
| 61 | + display: none; | |
| 62 | + position: absolute; | |
| 63 | + right: 0%; | |
| 64 | + border: 0px solid #AAA; | |
| 65 | + margin: 0px; | |
| 66 | + padding: 0px; | |
| 67 | +} | |
| 68 | + | |
| 69 | +#block-types .block-type:hover .button-bar { | |
| 70 | + display: inline; | |
| 71 | +} | |
| 72 | + | |
| 73 | +#block-info-container { | |
| 74 | + width: 770px; | |
| 75 | + padding: 15px; | |
| 76 | + color: #444; | |
| 77 | +} | |
| 78 | + | |
| 79 | +#block-info-container #block-info-icon { | |
| 80 | + float: left; | |
| 81 | + padding-right: 10px; | |
| 82 | +} | |
| 83 | + | |
| 84 | +#block-info-container #block-info-header { | |
| 85 | + display: inline-block; | |
| 86 | + float: left; | |
| 87 | +} | |
| 88 | + | |
| 89 | +#block-info-container #block-info-header h1 { | |
| 90 | + display: inline-block; | |
| 91 | + margin: 0; | |
| 92 | + font-weight: normal; | |
| 93 | + font-family: "Arial Black", Liberation Sans, Arial, sans-serif; | |
| 94 | +} | |
| 95 | + | |
| 96 | +#block-info-container h2 { | |
| 97 | + margin: 0; | |
| 98 | + margin-top: 10px; | |
| 99 | + font-weight: normal; | |
| 100 | + font-family: "Arial Black", Liberation Sans, Arial, sans-serif; | |
| 101 | +} | |
| 102 | + | |
| 103 | +#block-info-container p { | |
| 104 | + margin: 0; | |
| 105 | +} | |
| 106 | + | |
| 107 | +#block-info-images { | |
| 108 | + clear: both; | |
| 109 | + overflow-x: auto; | |
| 110 | + padding-top: 15px; | |
| 111 | +} | |
| 112 | + | |
| 113 | +#block-info-description { | |
| 114 | + margin-top: 20px; | |
| 115 | +} | ... | ... |