mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
2011-09-06 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/styles/pandora_forms.css include/styles/pandora_minimal.css include/styles/pandora_black.css include/styles/pandora.css: Changed style for calendar. * images/skin/skin_default/include/styles/menu.css: Added icon for networkmap with skin configuration. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4920 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
49c2ad9432
commit
8404ab562e
@ -1,3 +1,13 @@
|
|||||||
|
2011-09-06 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
|
* include/styles/pandora_forms.css
|
||||||
|
include/styles/pandora_minimal.css
|
||||||
|
include/styles/pandora_black.css
|
||||||
|
include/styles/pandora.css: Changed style for calendar.
|
||||||
|
|
||||||
|
* images/skin/skin_default/include/styles/menu.css: Added icon for
|
||||||
|
networkmap with skin configuration.
|
||||||
|
|
||||||
2011-09-06 Javier Lanz <javier.lanz@artica.es>
|
2011-09-06 Javier Lanz <javier.lanz@artica.es>
|
||||||
|
|
||||||
* include/help/en/help_timesource.php: Changed a wee translation bug
|
* include/help/en/help_timesource.php: Changed a wee translation bug
|
||||||
|
@ -132,6 +132,10 @@
|
|||||||
#icon_oper-extensions, #icon_god-extensions {
|
#icon_oper-extensions, #icon_god-extensions {
|
||||||
background-image: url(../../images/extensions.png);
|
background-image: url(../../images/extensions.png);
|
||||||
}
|
}
|
||||||
|
#icon_oper-networkconsole {
|
||||||
|
background-image: url(../../images/plotchart.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Godmode images */
|
/* Godmode images */
|
||||||
#icon_god-gismaps {
|
#icon_god-gismaps {
|
||||||
|
@ -1283,7 +1283,7 @@ div#logo_text3 {
|
|||||||
|
|
||||||
/* Calendar background */
|
/* Calendar background */
|
||||||
table.scw {
|
table.scw {
|
||||||
background-color: #000;
|
background-color: #daedae;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Week number heading */
|
/* Week number heading */
|
||||||
@ -1291,10 +1291,14 @@ td.scwWeekNumberHead {
|
|||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Today selector */ +
|
td.scwWeek {
|
||||||
|
color: #000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Today selector */
|
||||||
td.scwFoot {
|
td.scwFoot {
|
||||||
background-color: #000;
|
background-color: #daedae;
|
||||||
color: #FFFFFF;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.scwFootDisabled {
|
td.scwFootDisabled {
|
||||||
@ -1303,5 +1307,10 @@ td.scwFootDisabled {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tfoot.scwFoot {
|
tfoot.scwFoot {
|
||||||
color: #FFFFFF;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.scwFoot :hover{
|
||||||
|
color: #FFA500 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -196,3 +196,19 @@ input.login {
|
|||||||
.databox_login {
|
.databox_login {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*CALENDAR TOOLTIP STYLE*/
|
||||||
|
|
||||||
|
/* Calendar background */
|
||||||
|
table.scw {
|
||||||
|
background-color: #505050;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Today selector */
|
||||||
|
td.scwFoot {
|
||||||
|
background-color: #505050;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -56,3 +56,40 @@ fieldset br {
|
|||||||
position:relative;
|
position:relative;
|
||||||
left:80%;
|
left:80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*CALENDAR TOOLTIP STYLE*/
|
||||||
|
|
||||||
|
/* Calendar background */
|
||||||
|
table.scw {
|
||||||
|
background-color: #daedae;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Week number heading */
|
||||||
|
td.scwWeekNumberHead {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.scwWeek {
|
||||||
|
color: #000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Today selector */
|
||||||
|
td.scwFoot {
|
||||||
|
background-color: #daedae;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.scwFootDisabled {
|
||||||
|
background-color: #000;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
tfoot.scwFoot {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scwFoot :hover{
|
||||||
|
color: #FFA500 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -122,3 +122,39 @@ tr.rowOdd:hover {
|
|||||||
.disabled_module {
|
.disabled_module {
|
||||||
color: #98c2ed;
|
color: #98c2ed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*CALENDAR TOOLTIP STYLE*/
|
||||||
|
|
||||||
|
/* Calendar background */
|
||||||
|
table.scw {
|
||||||
|
background-color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Week number heading */
|
||||||
|
td.scwWeekNumberHead {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.scwWeek {
|
||||||
|
color: #000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Today selector */
|
||||||
|
td.scwFoot {
|
||||||
|
background-color: #FFF;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.scwFootDisabled {
|
||||||
|
background-color: #000;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
tfoot.scwFoot {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scwFoot :hover{
|
||||||
|
color: #FFA500 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user