| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #xf-pallete {
- float:left;
- width: 20%;
- }
- #xf-form {
- float:left;
- width: 100%;
- }
- .xf-button {
- width: 80%;
- border: 1px dotted gray;
- margin: 2px;
- text-align: center;
- cursor: pointer;
- -moz-user-select: none;
- }
- .xf-pallete {
- width: 80%;
- border: 1px dotted gray;
- margin: 2px;
- text-align: center;
- cursor: move;
- -moz-user-select: none;
- }
- table.xf-table {
- }
- td.xf-cell {
- -moz-user-select: none;
- }
- td.xf-cell div {
- height: 22px;
- }
- td.xf-cell-top {
- border-top: black 1px solid;
- }
- td.xf-cell-bottom {
- border-bottom: black 1px solid;
- }
- td.xf-cell-left {
- border-left: black 1px solid;
- }
- td.xf-cell-right {
- border-right: black 1px solid;
- }
- td.xf-cell.active {
- background-color: #EEEEEE;
- }
- td.xf-cell-top.active {
- border-top: black 1px dotted;
- }
- td.xf-cell-bottom.active {
- border-bottom: black 1px dotted;
- }
- td.xf-cell-left.active {
- border-left: black 1px dotted;
- }
- td.xf-cell-right.active {
- border-right: black 1px dotted;
- }
- .xf-handler {
- cursor: move;
- height: auto;
- margin: 5px;
- }
- .xf-handler .radio,
- .xf-handler .checkbox {
- padding-left: 5px;
- }
|