Changeset 7194
- Timestamp:
- Oct 15, 2010, 1:16:05 PM (14 years ago)
- Location:
- extensions/gally/gally-cuise
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/gally/gally-cuise/conf/default.conf
r6926 r7194 219 219 # This option is not used when the 'menuAnimated' option is set to "noswitch" 220 220 menuMaxWidth = 0 221 menuMSIEMaxWidth = 200221 menuMSIEMaxWidth = 190 222 222 223 223 # -- 1.3.0 -- -
extensions/gally/gally-cuise/css/theme.css
r6926 r7194 804 804 #navThumbPrev, #navThumbNext { 805 805 vertical-align: top; 806 top: 60px;806 top: 120px; 807 807 } 808 808 … … 1277 1277 } 1278 1278 #theImg { z-index: -1;} 1279 #theImage{ position:absolute;z-index:78; overflow:hidden;width:100%}1279 #theImage{ z-index:78; overflow:hidden;width:100%} 1280 1280 #cadre{ 1281 1281 background-position:50px 0; … … 1285 1285 1286 1286 } 1287 /* Google */ 1288 #map2{ 1289 left:0px; 1290 width:250px 1291 } 1292 #mapPicture { 1293 /*position:absolute; */ /*left:0px;*/ 1294 padding: 20px; 1295 width: 150px; 1296 border: outset; 1297 text-align: center; 1298 vertical-align: text-top; 1299 line-height: normal; 1300 font-family: Arial, Helvetica, sans-serif; 1301 font-size: medium; 1302 } 1303 #mapPicture span { 1304 font-family: Arial, Helvetica, sans-serif; 1305 color: #00FF00; 1306 float: left; 1307 left: 0px; 1308 right: 0px; 1309 font-variant: small-caps; 1310 text-align: left; 1311 vertical-align: top; 1312 line-height: 12px; 1313 clear: both; 1314 font-size: 14px; 1315 } 1316 1317 #map #map_magnifyingglass{ 1318 top:20px 1319 } 1320 #map #hmtctl{} 1321 1322 #map #earth0 { 1323 1324 right: 0px; 1325 padding: 0 5px; 1326 font-size: 12px; 1327 background-color: #f00; 1328 color: #fff; 1329 font-weight: bold; 1330 } 1331 1332 1333 #divMsg{ 1334 1335 } 1336 .ammillustrationc{ 1337 1338 } 1339 #irandompicinner{ 1340 width:60%; 1341 } 1342 1343 .illustration{ overflow:hidden} 1344 div ul.thumbnails span.wrap2 { overflow:hidden; 1345 width:138px;} 1346 1347 stuffs_block .middle_block .stuffs .content, BODY#theAdminPage .content, BODY#theTagsPage .content{} 1348 .personal_block { 1349 width:50% 1350 } 1351 1352 .content .personal_block{ 1353 margin-left:0; 1354 float:left; 1355 left:0px; 1356 } 1357 1358 /*--- imagerie ---*/ 1359 #map div span { 1360 /*position: fixed;*/ 1361 bottom: 50px; 1362 right: 200px; 1363 padding: 0 5px; 1364 font-size: 12px; 1365 /*background-color: #0f0;*/ 1366 color: #fff; 1367 font-weight: bold; 1368 } 1369 /*--- Logo Google ---*/ 1370 #map #logocontrol{ position:absolute; 1371 top:50px;left:150px; 1372 } -
extensions/gally/gally-cuise/js/crossbrowser.js
r6926 r7194 2529 2529 }, 2530 2530 //======================================================= 2531 absolutize: function(element) { 2532 element = $(element); 2533 if (element.getStyle('position') == 'absolute') return; 2534 // Position.prepare(); // To be done manually by Scripty when it needs it. 2535 2536 var offsets = element.positionedOffset(); 2537 var top = offsets[1]; 2538 var left = offsets[0]; 2539 var width = element.clientWidth; 2540 var height = element.clientHeight; 2541 2542 element._originalLeft = left - parseFloat(element.style.left || 0); 2543 element._originalTop = top - parseFloat(element.style.top || 0); 2544 element._originalWidth = element.style.width; 2545 element._originalHeight = element.style.height; 2546 2547 element.style.position = 'absolute'; 2548 element.style.top = top + 'px'; 2549 element.style.left = left + 'px'; 2550 element.style.width = width + 'px'; 2551 element.style.height = height + 'px'; 2552 return element; 2553 }, 2554 2555 relativize: function(element) { 2556 element = $(element); 2557 if (element.getStyle('position') == 'relative') return; 2558 // Position.prepare(); // To be done manually by Scripty when it needs it. 2559 2560 element.style.position = 'relative'; 2561 var top = parseFloat(element.style.top || 0) - (element._originalTop || 0); 2562 var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0); 2563 2564 element.style.top = top + 'px'; 2565 element.style.left = left + 'px'; 2566 element.style.height = element._originalHeight; 2567 element.style.width = element._originalWidth; 2568 return element; 2569 }, 2570 2571 //===================================================== 2531 2572 findPos : function() { 2532 2573 obj_ = jQuery(this).get(0);
Note: See TracChangeset
for help on using the changeset viewer.