mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-21 12:54:56 +02:00
2013-01-14 Miguel de Dios <miguel.dedios@artica.es>
* include/styles/dialog.css: fixed the typo for disabled the styles. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7446 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
326d90f985
commit
fda01e1298
@ -1,3 +1,7 @@
|
|||||||
|
2013-01-14 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* include/styles/dialog.css: fixed the typo for disabled the styles.
|
||||||
|
|
||||||
2013-01-14 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2013-01-14 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* include/functions_modules.php
|
* include/functions_modules.php
|
||||||
|
@ -134,77 +134,80 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Dialog handle styles */
|
/* Dialog handle styles */
|
||||||
#.ui-dialog .ui-resizable-n {
|
/*Disabled*/
|
||||||
# cursor: n-resize;
|
/*
|
||||||
# height: 6px;
|
.ui-dialog .ui-resizable-n {
|
||||||
# width: 100%;
|
cursor: n-resize;
|
||||||
# top: 0px;
|
height: 6px;
|
||||||
# left: 0px;
|
width: 100%;
|
||||||
# background: transparent url(images/dialog-n.gif) repeat scroll center top;
|
top: 0px;
|
||||||
#}
|
left: 0px;
|
||||||
|
background: transparent url(images/dialog-n.gif) repeat scroll center top;
|
||||||
|
}
|
||||||
|
|
||||||
#.ui-dialog .ui-resizable-s {
|
.ui-dialog .ui-resizable-s {
|
||||||
# cursor: s-resize;
|
cursor: s-resize;
|
||||||
# height: 8px;
|
height: 8px;
|
||||||
# width: 100%;
|
width: 100%;
|
||||||
# bottom: 0px;
|
bottom: 0px;
|
||||||
# left: 0px;
|
left: 0px;
|
||||||
# background: transparent url(images/dialog-s.gif) repeat scroll center top;
|
background: transparent url(images/dialog-s.gif) repeat scroll center top;
|
||||||
#}
|
}
|
||||||
|
|
||||||
#.ui-dialog .ui-resizable-e {
|
.ui-dialog .ui-resizable-e {
|
||||||
# cursor: e-resize;
|
cursor: e-resize;
|
||||||
# width: 7px;
|
width: 7px;
|
||||||
# right: 0px;
|
right: 0px;
|
||||||
# top: 0px;
|
top: 0px;
|
||||||
# height: 100%;
|
height: 100%;
|
||||||
# background: transparent url(images/dialog-e.gif) repeat scroll right center;
|
background: transparent url(images/dialog-e.gif) repeat scroll right center;
|
||||||
#}
|
}
|
||||||
|
|
||||||
#.ui-dialog .ui-resizable-w {
|
.ui-dialog .ui-resizable-w {
|
||||||
# cursor: w-resize;
|
cursor: w-resize;
|
||||||
# width: 7px;
|
width: 7px;
|
||||||
# left: 0px;
|
left: 0px;
|
||||||
# top: 0px;
|
top: 0px;
|
||||||
# height: 100%;
|
height: 100%;
|
||||||
# background: transparent url(images/dialog-w.gif) repeat scroll right center;
|
background: transparent url(images/dialog-w.gif) repeat scroll right center;
|
||||||
#}
|
}
|
||||||
|
|
||||||
#.ui-dialog .ui-resizable-se {
|
.ui-dialog .ui-resizable-se {
|
||||||
# cursor: se-resize;
|
cursor: se-resize;
|
||||||
# width: 9px;
|
width: 9px;
|
||||||
# height: 9px;
|
height: 9px;
|
||||||
# right: 0px;
|
right: 0px;
|
||||||
# bottom: 0px;
|
bottom: 0px;
|
||||||
# background: transparent url(images/dialog-se.gif);
|
background: transparent url(images/dialog-se.gif);
|
||||||
#}
|
}
|
||||||
|
|
||||||
#.ui-dialog .ui-resizable-sw {
|
.ui-dialog .ui-resizable-sw {
|
||||||
# cursor: sw-resize;
|
cursor: sw-resize;
|
||||||
# width: 9px;
|
width: 9px;
|
||||||
# height: 9px;
|
height: 9px;
|
||||||
# left: 0px;
|
left: 0px;
|
||||||
# bottom: 0px;
|
bottom: 0px;
|
||||||
# background: transparent url(images/dialog-sw.gif);
|
background: transparent url(images/dialog-sw.gif);
|
||||||
#}
|
}
|
||||||
|
|
||||||
#.ui-dialog .ui-resizable-nw {
|
.ui-dialog .ui-resizable-nw {
|
||||||
# cursor: nw-resize;
|
cursor: nw-resize;
|
||||||
# width: 9px;
|
width: 9px;
|
||||||
# height: 29px;
|
height: 29px;
|
||||||
# left: 0px;
|
left: 0px;
|
||||||
# top: 0px;
|
top: 0px;
|
||||||
# background: transparent url(images/dialog-nw.gif);
|
background: transparent url(images/dialog-nw.gif);
|
||||||
#}
|
}
|
||||||
|
|
||||||
#.ui-dialog .ui-resizable-ne {
|
.ui-dialog .ui-resizable-ne {
|
||||||
# cursor: ne-resize;
|
cursor: ne-resize;
|
||||||
# width: 9px;
|
width: 9px;
|
||||||
# height: 29px;
|
height: 29px;
|
||||||
# right: 0px;
|
right: 0px;
|
||||||
# top: 0px;
|
top: 0px;
|
||||||
# background: transparent url(images/dialog-ne.gif);
|
background: transparent url(images/dialog-ne.gif);
|
||||||
#}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
.ui-dialog .ui-button-dialog {
|
.ui-dialog .ui-button-dialog {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user