Skip to content

Commit 337f4b1

Browse files
feat(dialog): add dialog demo
1 parent a37c611 commit 337f4b1

8 files changed

+1012
-231
lines changed

assets/demo.css

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -11,58 +11,58 @@ body {
1111

1212

1313
.hero-unit {
14-
position: relative;
15-
padding: 40px 0;
16-
color: #fff;
17-
text-align: center;
18-
text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075);
19-
background: #020031;
20-
background: -moz-linear-gradient(45deg, #020031 0%, #6d3353 100%);
21-
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#020031), color-stop(100%,#6d3353));
22-
background: -webkit-linear-gradient(45deg, #020031 0%,#6d3353 100%);
23-
background: -o-linear-gradient(45deg, #020031 0%,#6d3353 100%);
24-
background: -ms-linear-gradient(45deg, #020031 0%,#6d3353 100%);
25-
background: linear-gradient(45deg, #020031 0%,#6d3353 100%);
26-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 );
27-
-webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
28-
-moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
29-
box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
30-
border-radius: 0;
31-
-moz-border-radius: 0;
32-
-webkit-border-radius: 0;
33-
-o-border-radius: 0;
14+
position: relative;
15+
padding: 40px 0;
16+
color: #fff;
17+
text-align: center;
18+
text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075);
19+
background: #020031;
20+
background: -moz-linear-gradient(45deg, #020031 0%, #6d3353 100%);
21+
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#020031), color-stop(100%,#6d3353));
22+
background: -webkit-linear-gradient(45deg, #020031 0%,#6d3353 100%);
23+
background: -o-linear-gradient(45deg, #020031 0%,#6d3353 100%);
24+
background: -ms-linear-gradient(45deg, #020031 0%,#6d3353 100%);
25+
background: linear-gradient(45deg, #020031 0%,#6d3353 100%);
26+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 );
27+
-webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
28+
-moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
29+
box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
30+
border-radius: 0;
31+
-moz-border-radius: 0;
32+
-webkit-border-radius: 0;
33+
-o-border-radius: 0;
3434
}
3535
.hero-unit .btn, .pagination-centered .btn {
36-
float: none;
37-
font-weight: normal;
36+
float: none;
37+
font-weight: normal;
3838
}
3939
.hero-unit p {
40-
margin: 1em 0;
40+
margin: 1em 0;
4141
}
4242
.bs-docs-social {
43-
margin-top: 1em;
44-
padding: 15px 0;
45-
text-align: center;
46-
background-color: rgba(245,245,245,0.3);
47-
border-top: 1px solid rgba(255,255,255,0.3);
48-
border-bottom: 1px solid rgba(221,221,221,0.3);
43+
margin-top: 1em;
44+
padding: 15px 0;
45+
text-align: center;
46+
background-color: rgba(245,245,245,0.3);
47+
border-top: 1px solid rgba(255,255,255,0.3);
48+
border-bottom: 1px solid rgba(221,221,221,0.3);
4949
}
5050
.bs-docs-social-buttons {
51-
margin-left: 0;
52-
margin-bottom: 0;
53-
padding-left: 0;
54-
list-style: none;
51+
margin-left: 0;
52+
margin-bottom: 0;
53+
padding-left: 0;
54+
list-style: none;
5555
}
5656
.bs-docs-social-buttons li {
57-
display: inline-block;
58-
padding: 5px 8px;
59-
line-height: 1;
57+
display: inline-block;
58+
padding: 5px 8px;
59+
line-height: 1;
6060
}
6161

6262
/* Not enough room on mobile for markup tab, js tab, and plunk btn.
6363
And no one cares about plunk button on a phone anyway */
6464
@media only screen and (max-device-width: 480px) {
65-
#plunk-btn {
66-
display: none;
67-
}
68-
}
65+
#plunk-btn {
66+
display: none;
67+
}
68+
}

img/glyphicons-halflings-white.png

8.57 KB
Loading

img/glyphicons-halflings.png

12.5 KB
Loading

0 commit comments

Comments
 (0)