Commit 23c029dfebbab33312435eff8cec605e0ad32124
Exists in
master
and in
8 other branches
Merge branch 'master' of https://gitlab.com/softwarepublico/noosfero-spb-theme
Showing
1 changed file
with
75 additions
and
49 deletions
Show diff stats
style.css
... | ... | @@ -975,50 +975,6 @@ p { |
975 | 975 | |
976 | 976 | /* fim de comentário*/ |
977 | 977 | |
978 | -/*paginação*/ | |
979 | - | |
980 | -.pagination { | |
981 | - border-top: 0 none; | |
982 | -} | |
983 | - | |
984 | -#content .pagination a { | |
985 | - padding: 7px 11px 7px 11px; | |
986 | - border-radius: 4px; | |
987 | - margin-right: 4px; | |
988 | - letter-spacing: 0.6px; | |
989 | - color: #172738; | |
990 | - border: 1px solid #D3D6DE; | |
991 | -} | |
992 | - | |
993 | -.pagination .current { | |
994 | - background-color: #ECEDF1; | |
995 | - padding: 8px 11px 8px 11px; | |
996 | - border-radius: 4px; | |
997 | - margin-right: 4px; | |
998 | - font-family: Arial; | |
999 | - font-weight: 700; | |
1000 | - font-size: 16px; | |
1001 | - border: 1px solid #D3D6DE; | |
1002 | -} | |
1003 | - | |
1004 | -#content .pagination a.previous_page, | |
1005 | -#content .pagination a.next_page{ | |
1006 | - background-image: none; | |
1007 | - color: #888888; | |
1008 | - font-size: 14px; | |
1009 | - width: auto; | |
1010 | -} | |
1011 | - | |
1012 | - | |
1013 | -#content #article .pagination .next_page, | |
1014 | -#content #article .pagination .previous_page{ | |
1015 | - background-image: none; | |
1016 | - color: #ccc; | |
1017 | - width: auto; | |
1018 | - font-size: 16px; | |
1019 | -} | |
1020 | - | |
1021 | -/*fim paginação*/ | |
1022 | 978 | |
1023 | 979 | /*borda dos wrappers*/ |
1024 | 980 | /**/ |
... | ... | @@ -1235,15 +1191,85 @@ div#article-parent { |
1235 | 1191 | /*paginação*/ |
1236 | 1192 | |
1237 | 1193 | .pagination { |
1194 | + margin-bottom: 30px; | |
1195 | + border-top: 0 none; | |
1196 | + margin-top: 48px; | |
1197 | + font-family: Arial; | |
1198 | +} | |
1199 | + | |
1200 | +#content .pagination a { | |
1201 | + padding: 7px 11px 7px 11px; | |
1202 | + border-radius: 4px; | |
1203 | + margin-right: 4px; | |
1204 | + letter-spacing: 0.6px; | |
1205 | + font-size: 15px; | |
1206 | + border: 1px solid #D3D6DE; | |
1207 | + color: #172738; | |
1208 | + font-weight: 700; | |
1209 | +} | |
1238 | 1210 | |
1211 | +.pagination .current { | |
1212 | + background-color: #ECEDF1; | |
1213 | + padding: 7px 11px 7px 11px; | |
1214 | + border-radius: 4px; | |
1215 | + margin-right: 4px; | |
1216 | + font-weight: 700; | |
1217 | + font-size: 15px; | |
1218 | + border: 1px solid #D3D6DE; | |
1219 | + font-style: normal; | |
1239 | 1220 | } |
1240 | -.pagination { | |
1241 | - font-size: 120%; | |
1242 | - margin-bottom: 30px; | |
1221 | + | |
1222 | +#content .pagination .next_page.disabled, | |
1223 | +#content .pagination .previous_page.disabled, | |
1224 | +#content .pagination a.previous_page, | |
1225 | +#content .pagination a.next_page{ | |
1226 | + border-radius: 4px; | |
1227 | + margin-top: -9px; | |
1228 | + letter-spacing: 0.6px; | |
1229 | + border: 1px solid #D3D6DE; | |
1230 | + color: #172738; | |
1231 | + background-image: none; | |
1232 | + font-size: 15px; | |
1233 | + width: auto; | |
1234 | + font-weight: 500; | |
1235 | + position: relative; | |
1236 | +} | |
1237 | + | |
1238 | +#content .pagination .previous_page{ | |
1239 | + float: left; | |
1240 | + padding: 7px 11px 7px 30px; | |
1241 | +} | |
1242 | + | |
1243 | +#content .pagination .next_page.disabled, | |
1244 | +#content .pagination .previous_page.disabled{ | |
1245 | + opacity: 0.5; | |
1243 | 1246 | } |
1244 | 1247 | |
1245 | -.pagination .previous_page{margin-right: 0.5em; font-weight: bold;} | |
1246 | -.pagination .next_page{margin-left: 0.5em; font-weight: bold;} | |
1248 | +#content .pagination .next_page{ | |
1249 | + float: right; | |
1250 | + padding: 7px 30px 7px 11px; | |
1251 | +} | |
1252 | + | |
1253 | +#content .pagination .previous_page.disabled::before, | |
1254 | +#content .pagination a.previous_page::before { | |
1255 | + display: none; | |
1256 | + position: absolute; | |
1257 | + content: url('images/left-arrow-black.png'); | |
1258 | + left: 8px; | |
1259 | + top: 11px; | |
1260 | +} | |
1261 | + | |
1262 | +#content .pagination .next_page.disabled::before, | |
1263 | +#content .pagination a.next_page::before { | |
1264 | + display: none; | |
1265 | + position: absolute; | |
1266 | + content: url('images/right-arrow-black.png'); | |
1267 | + left: 97px; | |
1268 | + top: 11px; | |
1269 | +} | |
1270 | + | |
1271 | +/*fim paginação*/ | |
1272 | + | |
1247 | 1273 | |
1248 | 1274 | #profile-header { |
1249 | 1275 | position: absolute; /* Corrige link de login */ | ... | ... |