File tree Expand file tree Collapse file tree 4 files changed +493
-0
lines changed Expand file tree Collapse file tree 4 files changed +493
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Dialog
3+ *
4+ * @author Roland Franssen <franssen.roland@gmail.com>
5+ * @license MIT
6+ * @version 2.1
7+ **/
8+
9+ /* DONT CHANGE */
10+ * html .fixed { position : absolute }
11+ .fixed { position : fixed }
12+
13+ /* DIALOG CORE */
14+ # dialog-overlay { top : 0 ;left : 0 ;width : 100% ;height : 100% ;z-index : 900 }
15+ # dialog-container { overflow : hidden;z-index : 901 ;text-align : left }
16+
17+ /* DIALOG TOP */
18+ # dialog-top {background : # 999 ;border : 1px solid # fff ;padding : 5px ;font-weight : bold}
19+ # dialog-title {color : # 333 }
20+ # dialog-close {color : # fff ;padding-left : 5px }
21+ # dialog-close : hover {color : # ccc }
22+
23+ /* DIALOG BOTTOM */
24+ # dialog-bottom {background : # eee ;border-top : 1px solid # ccc ;color : # 666 ;padding : 5px ;text-align : center;font-size : 12px }
25+ # dialog-bottom .next ,
26+ # dialog-bottom .prev {color : # ccc ;font-weight : bold;color : # 333 }
27+ # dialog-bottom .next : hover ,
28+ # dialog-bottom .prev : hover {color : # f90 }
29+ # dialog-bottom .next {padding-left : 10px }
30+ # dialog-bottom .prev {padding-right : 10px }
31+ # dialog-bottom .curr {}
32+
33+ /* DIALOG MISC */
34+ # dialog-loading {color : # ccc ;font-weight : bold;text-align : center;padding : 20px }
35+
36+ /* DIALOG PREDEFINED */
37+ # dialog-container .alert ,
38+ # dialog-container .confirm { text-align : center;color : # 999 }
39+ # dialog-container .alert input ,
40+ # dialog-container .confirm input { font-weight : bold;width : 75px }
41+
42+ /* DIALOG PERSONAL */
43+ # dialog-container .myFirstDialog { color : orange;font-size : 20px }
You can’t perform that action at this time.
0 commit comments