Commit e4880b6b19e23b22f4d5ee901842478cc2a8ef81
1 parent
5ed537dc
Exists in
master
and in
22 other branches
ActionItem18: finishing move from comatose_admin to cms
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@395 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
2 changed files
with
128 additions
and
128 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,128 @@ |
| 1 | + | |
| 2 | +/************************************ | |
| 3 | + * listing stuff | |
| 4 | + ************************************/ | |
| 5 | +#content .handle, #content .do-reorder UL LI .handle { | |
| 6 | + display: none; | |
| 7 | +} | |
| 8 | +#content .do-reorder LI .handle { | |
| 9 | + display: inline; | |
| 10 | + background: gray; | |
| 11 | + color: white; | |
| 12 | + padding: 1px 3px; | |
| 13 | + cursor: move; | |
| 14 | +} | |
| 15 | + | |
| 16 | +ul.page-list li { | |
| 17 | + list-style: none; | |
| 18 | +} | |
| 19 | + | |
| 20 | +ul.page-list li table, | |
| 21 | +ul.page-list li td { | |
| 22 | + border: none; | |
| 23 | + padding: 3px; | |
| 24 | +} | |
| 25 | + | |
| 26 | +ul.page-list a.page { | |
| 27 | + font-weight: bold; | |
| 28 | +} | |
| 29 | + | |
| 30 | +ul.page-list a:visited, ul.page-list a:link { | |
| 31 | + color: #000; | |
| 32 | +} | |
| 33 | + | |
| 34 | +ul.page-list a:hover { | |
| 35 | + background: #aa9; | |
| 36 | +} | |
| 37 | + | |
| 38 | +#content .page-list .hover { | |
| 39 | + background: #F1F0DB; | |
| 40 | +} | |
| 41 | + | |
| 42 | +#content .page-list .commands A.delete-page:hover { | |
| 43 | + color: white; | |
| 44 | + background: black; | |
| 45 | +} | |
| 46 | +#content .page-list .hover-delete { | |
| 47 | + background: red; | |
| 48 | + color: #FF8E90; | |
| 49 | +} | |
| 50 | +#content .page-list .hover-delete A, | |
| 51 | +#content .page-list .hover-delete .commands A { | |
| 52 | + color: #FF8E90; | |
| 53 | +} | |
| 54 | +#content .page-list .hover-delete A.page { | |
| 55 | + color: white; | |
| 56 | + border-bottom: 0px; | |
| 57 | +} | |
| 58 | +#content .page-list .hover-delete UL LI A.page { | |
| 59 | + color: red; | |
| 60 | + border-bottom: 0px; | |
| 61 | +} | |
| 62 | + | |
| 63 | +/*********************************** | |
| 64 | + * from stuff | |
| 65 | + ***********************************/ | |
| 66 | +div.comatose_field { | |
| 67 | +} | |
| 68 | +div.comatose_field label { | |
| 69 | + display: block; | |
| 70 | + font-weight: bold; | |
| 71 | +} | |
| 72 | + | |
| 73 | +div.comatose_field textarea { | |
| 74 | + width: 90%; | |
| 75 | +} | |
| 76 | +div.comatose_field textarea, | |
| 77 | +div.comatose_field input, | |
| 78 | +div.comatose_field select { | |
| 79 | + border: 1px solid gray; | |
| 80 | +} | |
| 81 | + | |
| 82 | +/**************************************** | |
| 83 | + * revisions page stuff | |
| 84 | + ****************************************/ | |
| 85 | + | |
| 86 | +.older-content { | |
| 87 | + float: right; | |
| 88 | +} | |
| 89 | +.current-content { | |
| 90 | + float: left; | |
| 91 | +} | |
| 92 | + | |
| 93 | +.revisions { | |
| 94 | + width: 47%; | |
| 95 | + border: 1px solid gray; | |
| 96 | + padding: 0.25em; | |
| 97 | +} | |
| 98 | + | |
| 99 | +.revisions .header { | |
| 100 | + font-weight: bold; | |
| 101 | + border-bottom: 1px solid black; | |
| 102 | + margin-bottom: 10px; | |
| 103 | + height: 40px; | |
| 104 | +} | |
| 105 | + | |
| 106 | +.revisions .meta { | |
| 107 | + border-bottom: 1px solid black; | |
| 108 | + margin-bottom: 10px; | |
| 109 | +} | |
| 110 | + | |
| 111 | +.revisions .footer { | |
| 112 | + border-top: 1px solid black; | |
| 113 | + margin-top: 10px; | |
| 114 | + padding: 0.25em; | |
| 115 | +} | |
| 116 | + | |
| 117 | +.revisions .meta label span { | |
| 118 | + font-weight: bold; | |
| 119 | +} | |
| 120 | + | |
| 121 | +.revisions .meta label { | |
| 122 | + font-weight: normal; | |
| 123 | + display: block; | |
| 124 | +} | |
| 125 | + | |
| 126 | +.collapsed { | |
| 127 | + display: none; | |
| 128 | +} | ... | ... |
public/stylesheets/comatose_admin.css
| ... | ... | @@ -1,128 +0,0 @@ |
| 1 | - | |
| 2 | -/************************************ | |
| 3 | - * listing stuff | |
| 4 | - ************************************/ | |
| 5 | -#content .handle, #content .do-reorder UL LI .handle { | |
| 6 | - display: none; | |
| 7 | -} | |
| 8 | -#content .do-reorder LI .handle { | |
| 9 | - display: inline; | |
| 10 | - background: gray; | |
| 11 | - color: white; | |
| 12 | - padding: 1px 3px; | |
| 13 | - cursor: move; | |
| 14 | -} | |
| 15 | - | |
| 16 | -ul.page-list li { | |
| 17 | - list-style: none; | |
| 18 | -} | |
| 19 | - | |
| 20 | -ul.page-list li table, | |
| 21 | -ul.page-list li td { | |
| 22 | - border: none; | |
| 23 | - padding: 3px; | |
| 24 | -} | |
| 25 | - | |
| 26 | -ul.page-list a.page { | |
| 27 | - font-weight: bold; | |
| 28 | -} | |
| 29 | - | |
| 30 | -ul.page-list a:visited, ul.page-list a:link { | |
| 31 | - color: #000; | |
| 32 | -} | |
| 33 | - | |
| 34 | -ul.page-list a:hover { | |
| 35 | - background: #aa9; | |
| 36 | -} | |
| 37 | - | |
| 38 | -#content .page-list .hover { | |
| 39 | - background: #F1F0DB; | |
| 40 | -} | |
| 41 | - | |
| 42 | -#content .page-list .commands A.delete-page:hover { | |
| 43 | - color: white; | |
| 44 | - background: black; | |
| 45 | -} | |
| 46 | -#content .page-list .hover-delete { | |
| 47 | - background: red; | |
| 48 | - color: #FF8E90; | |
| 49 | -} | |
| 50 | -#content .page-list .hover-delete A, | |
| 51 | -#content .page-list .hover-delete .commands A { | |
| 52 | - color: #FF8E90; | |
| 53 | -} | |
| 54 | -#content .page-list .hover-delete A.page { | |
| 55 | - color: white; | |
| 56 | - border-bottom: 0px; | |
| 57 | -} | |
| 58 | -#content .page-list .hover-delete UL LI A.page { | |
| 59 | - color: red; | |
| 60 | - border-bottom: 0px; | |
| 61 | -} | |
| 62 | - | |
| 63 | -/*********************************** | |
| 64 | - * from stuff | |
| 65 | - ***********************************/ | |
| 66 | -div.comatose_field { | |
| 67 | -} | |
| 68 | -div.comatose_field label { | |
| 69 | - display: block; | |
| 70 | - font-weight: bold; | |
| 71 | -} | |
| 72 | - | |
| 73 | -div.comatose_field textarea { | |
| 74 | - width: 90%; | |
| 75 | -} | |
| 76 | -div.comatose_field textarea, | |
| 77 | -div.comatose_field input, | |
| 78 | -div.comatose_field select { | |
| 79 | - border: 1px solid gray; | |
| 80 | -} | |
| 81 | - | |
| 82 | -/**************************************** | |
| 83 | - * revisions page stuff | |
| 84 | - ****************************************/ | |
| 85 | - | |
| 86 | -.older-content { | |
| 87 | - float: right; | |
| 88 | -} | |
| 89 | -.current-content { | |
| 90 | - float: left; | |
| 91 | -} | |
| 92 | - | |
| 93 | -.revisions { | |
| 94 | - width: 47%; | |
| 95 | - border: 1px solid gray; | |
| 96 | - padding: 0.25em; | |
| 97 | -} | |
| 98 | - | |
| 99 | -.revisions .header { | |
| 100 | - font-weight: bold; | |
| 101 | - border-bottom: 1px solid black; | |
| 102 | - margin-bottom: 10px; | |
| 103 | - height: 40px; | |
| 104 | -} | |
| 105 | - | |
| 106 | -.revisions .meta { | |
| 107 | - border-bottom: 1px solid black; | |
| 108 | - margin-bottom: 10px; | |
| 109 | -} | |
| 110 | - | |
| 111 | -.revisions .footer { | |
| 112 | - border-top: 1px solid black; | |
| 113 | - margin-top: 10px; | |
| 114 | - padding: 0.25em; | |
| 115 | -} | |
| 116 | - | |
| 117 | -.revisions .meta label span { | |
| 118 | - font-weight: bold; | |
| 119 | -} | |
| 120 | - | |
| 121 | -.revisions .meta label { | |
| 122 | - font-weight: normal; | |
| 123 | - display: block; | |
| 124 | -} | |
| 125 | - | |
| 126 | -.collapsed { | |
| 127 | - display: none; | |
| 128 | -} |