mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-09-04 01:17:17 +00:00
Merge branch 'master' of https://github.com/Shadowss/TravianZ.git
This commit is contained in:
@@ -7,7 +7,7 @@ include("menu.tpl");
|
|||||||
<div id="block">
|
<div id="block">
|
||||||
<input type="hidden" name="ft" value="m6" />
|
<input type="hidden" name="ft" value="m6" />
|
||||||
<textarea name="notizen" id="notice"><?php echo $message->note; ?></textarea>
|
<textarea name="notizen" id="notice"><?php echo $message->note; ?></textarea>
|
||||||
<p class="btn"><input id="btn_save" type="image" value="" name="s1" src="img/x.gif" class="dynamic_img" alt"save" /><br />
|
<p class="btn"><button id="btn_save" value="" name="s1" class="trav_buttons" alt"save" /> Save </button><br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
+34
-23
@@ -573,34 +573,45 @@ input#btn_search {width:97px; background-image: url(b/search.gif);}
|
|||||||
|
|
||||||
/* Start tooltips for the admin panel settings */
|
/* Start tooltips for the admin panel settings */
|
||||||
.tooltip {
|
.tooltip {
|
||||||
border-bottom: 1px dotted #000000;
|
|
||||||
color: #000000;
|
|
||||||
outline: none;
|
|
||||||
cursor: help;
|
|
||||||
text-decoration: none;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
border-bottom: 1px dotted black;
|
||||||
|
cursor: help;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip span {
|
.tooltip .classic {
|
||||||
margin-left: -999em;
|
visibility: hidden;
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip:hover span {
|
|
||||||
font-family: Calibri, Tahoma, Geneva, sans-serif;
|
|
||||||
font-size: 1.2em;
|
|
||||||
position: absolute;
|
|
||||||
left: -2em;
|
|
||||||
bottom: 1em;
|
|
||||||
z-index: 99;
|
|
||||||
margin-left: 0;
|
|
||||||
width: 250px;
|
width: 250px;
|
||||||
|
background-color: black;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
font-style: normal;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 10px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 99;
|
||||||
|
bottom: 120%;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -40px;
|
||||||
|
|
||||||
|
/* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 1s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.classic {
|
.tooltip .classic::after {
|
||||||
padding: 0.8em 1em;
|
content: "";
|
||||||
background: #FFFFAA;
|
position: absolute;
|
||||||
border: 1px solid #FFAD33;
|
top: 100%;
|
||||||
border-radius: 5px;
|
left: 40px;
|
||||||
|
margin-left: -5px;
|
||||||
|
border-width: 5px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: black transparent transparent transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip:hover .classic {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
/* End of tooltips */
|
/* End of tooltips */
|
||||||
+1
-1
@@ -106,7 +106,7 @@ if(!isset($_REQUEST['npw'])){
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<input type="image" value="ok" name="s1" src="img/x.gif" class="dynamic_img" id="btn_ok" alt="OK" />
|
<button value="ok" name="s1" class="trav_buttons" id="btn_ok" alt="OK" /> ok </button>
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
|
|||||||
+1
-1
@@ -162,7 +162,7 @@ if(count($target) > 0) {
|
|||||||
</tr></tbody>
|
</tr></tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<p class="btn"><input type="image" value="ok" name="s1" id="btn_ok" class="dynamic_img" src="img/x.gif" alt="OK" /></p>
|
<p class="btn"><button value="ok" name="s1" id="btn_ok" class="trav_buttons" alt="OK" /> OK </button></p>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<br /><br /><br /><br /><div id="side_info">
|
<br /><br /><br /><br /><div id="side_info">
|
||||||
|
|||||||
Reference in New Issue
Block a user