prez 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/prez +3 -1
- data/lib/prez/assets.rb +10 -3
- data/lib/prez/build.rb +7 -18
- data/lib/prez/builder.rb +19 -0
- data/lib/prez/cli.rb +4 -11
- data/lib/prez/error.rb +16 -0
- data/lib/prez/files.rb +30 -10
- data/lib/prez/helpers.rb +37 -0
- data/lib/prez/new.rb +36 -0
- data/lib/prez/sass_extensions.rb +40 -0
- data/lib/prez/start.rb +69 -0
- data/lib/prez/version.rb +1 -1
- data/templates/build.html.tt +87 -0
- data/templates/new.prez.tt +11 -2
- data/vendor/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/vendor/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/vendor/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/vendor/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/vendor/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/vendor/javascripts/bootstrap.js +2306 -0
- data/vendor/javascripts/prez-controller.js.coffee +131 -0
- data/vendor/stylesheets/_bootstrap.scss +50 -0
- data/vendor/stylesheets/bootstrap/_alerts.scss +73 -0
- data/vendor/stylesheets/bootstrap/_badges.scss +67 -0
- data/vendor/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/vendor/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/vendor/stylesheets/bootstrap/_buttons.scss +160 -0
- data/vendor/stylesheets/bootstrap/_carousel.scss +269 -0
- data/vendor/stylesheets/bootstrap/_close.scss +36 -0
- data/vendor/stylesheets/bootstrap/_code.scss +69 -0
- data/vendor/stylesheets/bootstrap/_component-animations.scss +38 -0
- data/vendor/stylesheets/bootstrap/_dropdowns.scss +214 -0
- data/vendor/stylesheets/bootstrap/_forms.scss +570 -0
- data/vendor/stylesheets/bootstrap/_glyphicons.scss +301 -0
- data/vendor/stylesheets/bootstrap/_grid.scss +84 -0
- data/vendor/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/vendor/stylesheets/bootstrap/_jumbotron.scss +50 -0
- data/vendor/stylesheets/bootstrap/_labels.scss +66 -0
- data/vendor/stylesheets/bootstrap/_list-group.scss +124 -0
- data/vendor/stylesheets/bootstrap/_media.scss +61 -0
- data/vendor/stylesheets/bootstrap/_mixins.scss +39 -0
- data/vendor/stylesheets/bootstrap/_modals.scss +148 -0
- data/vendor/stylesheets/bootstrap/_navbar.scss +663 -0
- data/vendor/stylesheets/bootstrap/_navs.scss +244 -0
- data/vendor/stylesheets/bootstrap/_normalize.scss +427 -0
- data/vendor/stylesheets/bootstrap/_pager.scss +54 -0
- data/vendor/stylesheets/bootstrap/_pagination.scss +88 -0
- data/vendor/stylesheets/bootstrap/_panels.scss +265 -0
- data/vendor/stylesheets/bootstrap/_popovers.scss +135 -0
- data/vendor/stylesheets/bootstrap/_print.scss +107 -0
- data/vendor/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/vendor/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/vendor/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
- data/vendor/stylesheets/bootstrap/_scaffolding.scss +150 -0
- data/vendor/stylesheets/bootstrap/_tables.scss +234 -0
- data/vendor/stylesheets/bootstrap/_theme.scss +273 -0
- data/vendor/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/vendor/stylesheets/bootstrap/_tooltip.scss +103 -0
- data/vendor/stylesheets/bootstrap/_type.scss +298 -0
- data/vendor/stylesheets/bootstrap/_utilities.scss +56 -0
- data/vendor/stylesheets/bootstrap/_variables.scss +862 -0
- data/vendor/stylesheets/bootstrap/_wells.scss +29 -0
- data/vendor/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/vendor/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/vendor/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/vendor/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/vendor/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/vendor/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/vendor/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/vendor/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/vendor/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/vendor/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/vendor/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/vendor/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/vendor/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/vendor/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/vendor/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/vendor/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/vendor/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/vendor/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/vendor/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/vendor/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/vendor/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/vendor/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/vendor/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/vendor/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/vendor/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/vendor/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/vendor/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/vendor/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/vendor/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/vendor/stylesheets/bootstrap.scss +2 -0
- data/vendor/stylesheets/prez/_variables.scss +3 -0
- data/vendor/stylesheets/prez-controller.scss +37 -0
- data/vendor/stylesheets/{prez.css → prez.scss} +12 -5
- metadata +118 -4
- data/vendor/javascripts/prez.js +0 -53
@@ -0,0 +1,131 @@
|
|
1
|
+
class Prez
|
2
|
+
DEFAULT_OPTIONS =
|
3
|
+
useHash: true
|
4
|
+
|
5
|
+
constructor: (options) ->
|
6
|
+
@options = $.extend {}, DEFAULT_OPTIONS, options
|
7
|
+
@window = options.window
|
8
|
+
@document = @window.document
|
9
|
+
@document.write $("#slides-document").text()
|
10
|
+
@document.close()
|
11
|
+
@start()
|
12
|
+
|
13
|
+
start: ->
|
14
|
+
changeToHashSlide = =>
|
15
|
+
return false unless @options.useHash
|
16
|
+
hash = @document.location.hash.replace /^#/, ""
|
17
|
+
|
18
|
+
if /^\d+$/.test(hash) && $(".prez-slide[data-slide='#{hash}']", @document).length > 0
|
19
|
+
@changeSlideTo hash
|
20
|
+
true
|
21
|
+
else
|
22
|
+
false
|
23
|
+
|
24
|
+
$(".prez-slide", @document).each (i) -> $(@).attr "data-slide", "#{i + 1}"
|
25
|
+
@changeSlideTo 1 unless changeToHashSlide()
|
26
|
+
$(@window).on "hashchange", changeToHashSlide
|
27
|
+
$(@document).on "keydown", Prez.handlers.keyDown
|
28
|
+
|
29
|
+
changeSlideTo: (nextValue) ->
|
30
|
+
$next = $ ".prez-slide[data-slide='#{nextValue}']", @document
|
31
|
+
return false if $next.size() == 0
|
32
|
+
$(".prez-slide", @document).hide()
|
33
|
+
$next.show()
|
34
|
+
@options.slideChanged? $next, nextValue
|
35
|
+
true
|
36
|
+
|
37
|
+
changeSlideBy: (amount) ->
|
38
|
+
current = parseInt $(".prez-slide:visible", @document).data("slide"), 10
|
39
|
+
nextValue = current + amount
|
40
|
+
|
41
|
+
if @changeSlideTo(nextValue) && @options.useHash
|
42
|
+
@document.location.hash = nextValue
|
43
|
+
|
44
|
+
nextSlide: -> @changeSlideBy 1
|
45
|
+
prevSlide: -> @changeSlideBy -1
|
46
|
+
end: -> @window.close()
|
47
|
+
|
48
|
+
KEY_ENTER = 13
|
49
|
+
KEY_SPACE = 32
|
50
|
+
KEY_LEFT = 37
|
51
|
+
KEY_RIGHT = 39
|
52
|
+
|
53
|
+
@handlers:
|
54
|
+
keyDown: (e) ->
|
55
|
+
return if $(e.target).is("button, input, textarea, select, option")
|
56
|
+
|
57
|
+
switch e.which
|
58
|
+
when KEY_LEFT
|
59
|
+
e.preventDefault()
|
60
|
+
Prez.current?.prevSlide()
|
61
|
+
when KEY_ENTER, KEY_SPACE, KEY_RIGHT
|
62
|
+
e.preventDefault()
|
63
|
+
Prez.current?.nextSlide()
|
64
|
+
|
65
|
+
$(document).on "click", "#new-window", (e) ->
|
66
|
+
return if Prez.current
|
67
|
+
|
68
|
+
callback = =>
|
69
|
+
if $(this).is(".active")
|
70
|
+
$("#new-window #launch-message").text "Launch in new window"
|
71
|
+
$("#new-window .glyphicon").addClass("glyphicon-new-window").removeClass("glyphicon-unchecked")
|
72
|
+
else
|
73
|
+
$("#new-window #launch-message").text "Launch in this window"
|
74
|
+
$("#new-window .glyphicon").removeClass("glyphicon-new-window").addClass("glyphicon-unchecked")
|
75
|
+
|
76
|
+
setTimeout callback, 1
|
77
|
+
|
78
|
+
$(document).on "click", "#launch", (e) ->
|
79
|
+
e.preventDefault()
|
80
|
+
return if Prez.current
|
81
|
+
|
82
|
+
unless $("#new-window").is(".active")
|
83
|
+
$("#in-window-not-implemented-modal").modal "show"
|
84
|
+
return
|
85
|
+
|
86
|
+
iframe = $("iframe")[0]
|
87
|
+
|
88
|
+
iframe = if iframe.contentWindow
|
89
|
+
iframe.contentWindow
|
90
|
+
else if iframe.contentDocument.document
|
91
|
+
iframe.contentDocument.document
|
92
|
+
else
|
93
|
+
iframe.contentDocument
|
94
|
+
|
95
|
+
iframePrez = new Prez
|
96
|
+
window: iframe
|
97
|
+
useHash: false
|
98
|
+
|
99
|
+
Prez.current = new Prez
|
100
|
+
window: window.open("", "prez", "width=640,height=480")
|
101
|
+
slideChanged: ($slide, slideNumber) ->
|
102
|
+
notes = $slide.find(".prez-notes").html() || ""
|
103
|
+
$("#slide-notes").html notes
|
104
|
+
$(".current-slide-number").text $slide.data("slide")
|
105
|
+
iframePrez.changeSlideTo slideNumber
|
106
|
+
|
107
|
+
$("#pre-launch").hide()
|
108
|
+
$("#post-launch").show()
|
109
|
+
|
110
|
+
$(Prez.current.window).bind "beforeunload", ->
|
111
|
+
$("#post-launch").hide()
|
112
|
+
$("#pre-launch").show()
|
113
|
+
Prez.current = null
|
114
|
+
return undefined
|
115
|
+
|
116
|
+
$(document).on "click", ".next-slide", (e) ->
|
117
|
+
e.preventDefault()
|
118
|
+
Prez.current?.nextSlide()
|
119
|
+
|
120
|
+
$(document).on "click", ".prev-slide", (e) ->
|
121
|
+
e.preventDefault()
|
122
|
+
Prez.current?.prevSlide()
|
123
|
+
|
124
|
+
$(document).on "click", ".end-prez", (e) ->
|
125
|
+
e.preventDefault()
|
126
|
+
Prez.current?.end()
|
127
|
+
|
128
|
+
$(document).on "keydown", Prez.handlers.keyDown
|
129
|
+
|
130
|
+
$ ->
|
131
|
+
$("#in-window-not-implemented-modal").modal show: false
|
@@ -0,0 +1,50 @@
|
|
1
|
+
// Core variables and mixins
|
2
|
+
@import "bootstrap/variables";
|
3
|
+
@import "bootstrap/mixins";
|
4
|
+
|
5
|
+
// Reset and dependencies
|
6
|
+
@import "bootstrap/normalize";
|
7
|
+
@import "bootstrap/print";
|
8
|
+
@import "bootstrap/glyphicons";
|
9
|
+
|
10
|
+
// Core CSS
|
11
|
+
@import "bootstrap/scaffolding";
|
12
|
+
@import "bootstrap/type";
|
13
|
+
@import "bootstrap/code";
|
14
|
+
@import "bootstrap/grid";
|
15
|
+
@import "bootstrap/tables";
|
16
|
+
@import "bootstrap/forms";
|
17
|
+
@import "bootstrap/buttons";
|
18
|
+
|
19
|
+
// Components
|
20
|
+
@import "bootstrap/component-animations";
|
21
|
+
@import "bootstrap/dropdowns";
|
22
|
+
@import "bootstrap/button-groups";
|
23
|
+
@import "bootstrap/input-groups";
|
24
|
+
@import "bootstrap/navs";
|
25
|
+
@import "bootstrap/navbar";
|
26
|
+
@import "bootstrap/breadcrumbs";
|
27
|
+
@import "bootstrap/pagination";
|
28
|
+
@import "bootstrap/pager";
|
29
|
+
@import "bootstrap/labels";
|
30
|
+
@import "bootstrap/badges";
|
31
|
+
@import "bootstrap/jumbotron";
|
32
|
+
@import "bootstrap/thumbnails";
|
33
|
+
@import "bootstrap/alerts";
|
34
|
+
@import "bootstrap/progress-bars";
|
35
|
+
@import "bootstrap/media";
|
36
|
+
@import "bootstrap/list-group";
|
37
|
+
@import "bootstrap/panels";
|
38
|
+
@import "bootstrap/responsive-embed";
|
39
|
+
@import "bootstrap/wells";
|
40
|
+
@import "bootstrap/close";
|
41
|
+
|
42
|
+
// Components w/ JavaScript
|
43
|
+
@import "bootstrap/modals";
|
44
|
+
@import "bootstrap/tooltip";
|
45
|
+
@import "bootstrap/popovers";
|
46
|
+
@import "bootstrap/carousel";
|
47
|
+
|
48
|
+
// Utility classes
|
49
|
+
@import "bootstrap/utilities";
|
50
|
+
@import "bootstrap/responsive-utilities";
|
@@ -0,0 +1,73 @@
|
|
1
|
+
//
|
2
|
+
// Alerts
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base styles
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
.alert {
|
10
|
+
padding: $alert-padding;
|
11
|
+
margin-bottom: $line-height-computed;
|
12
|
+
border: 1px solid transparent;
|
13
|
+
border-radius: $alert-border-radius;
|
14
|
+
|
15
|
+
// Headings for larger alerts
|
16
|
+
h4 {
|
17
|
+
margin-top: 0;
|
18
|
+
// Specified for the h4 to prevent conflicts of changing $headings-color
|
19
|
+
color: inherit;
|
20
|
+
}
|
21
|
+
|
22
|
+
// Provide class for links that match alerts
|
23
|
+
.alert-link {
|
24
|
+
font-weight: $alert-link-font-weight;
|
25
|
+
}
|
26
|
+
|
27
|
+
// Improve alignment and spacing of inner content
|
28
|
+
> p,
|
29
|
+
> ul {
|
30
|
+
margin-bottom: 0;
|
31
|
+
}
|
32
|
+
|
33
|
+
> p + p {
|
34
|
+
margin-top: 5px;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
// Dismissible alerts
|
39
|
+
//
|
40
|
+
// Expand the right padding and account for the close button's positioning.
|
41
|
+
|
42
|
+
.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
|
43
|
+
.alert-dismissible {
|
44
|
+
padding-right: ($alert-padding + 20);
|
45
|
+
|
46
|
+
// Adjust close link position
|
47
|
+
.close {
|
48
|
+
position: relative;
|
49
|
+
top: -2px;
|
50
|
+
right: -21px;
|
51
|
+
color: inherit;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
// Alternate styles
|
56
|
+
//
|
57
|
+
// Generate contextual modifier classes for colorizing the alert.
|
58
|
+
|
59
|
+
.alert-success {
|
60
|
+
@include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
|
61
|
+
}
|
62
|
+
|
63
|
+
.alert-info {
|
64
|
+
@include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text);
|
65
|
+
}
|
66
|
+
|
67
|
+
.alert-warning {
|
68
|
+
@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
|
69
|
+
}
|
70
|
+
|
71
|
+
.alert-danger {
|
72
|
+
@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
|
73
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
//
|
2
|
+
// Badges
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
.badge {
|
8
|
+
display: inline-block;
|
9
|
+
min-width: 10px;
|
10
|
+
padding: 3px 7px;
|
11
|
+
font-size: $font-size-small;
|
12
|
+
font-weight: $badge-font-weight;
|
13
|
+
color: $badge-color;
|
14
|
+
line-height: $badge-line-height;
|
15
|
+
vertical-align: baseline;
|
16
|
+
white-space: nowrap;
|
17
|
+
text-align: center;
|
18
|
+
background-color: $badge-bg;
|
19
|
+
border-radius: $badge-border-radius;
|
20
|
+
|
21
|
+
// Empty badges collapse automatically (not available in IE8)
|
22
|
+
&:empty {
|
23
|
+
display: none;
|
24
|
+
}
|
25
|
+
|
26
|
+
// Quick fix for badges in buttons
|
27
|
+
.btn & {
|
28
|
+
position: relative;
|
29
|
+
top: -1px;
|
30
|
+
}
|
31
|
+
|
32
|
+
.btn-xs & {
|
33
|
+
top: 0;
|
34
|
+
padding: 1px 5px;
|
35
|
+
}
|
36
|
+
|
37
|
+
// [converter] extracted a& to a.badge
|
38
|
+
|
39
|
+
// Account for badges in navs
|
40
|
+
.list-group-item.active > &,
|
41
|
+
.nav-pills > .active > a > & {
|
42
|
+
color: $badge-active-color;
|
43
|
+
background-color: $badge-active-bg;
|
44
|
+
}
|
45
|
+
|
46
|
+
.list-group-item > & {
|
47
|
+
float: right;
|
48
|
+
}
|
49
|
+
|
50
|
+
.list-group-item > & + & {
|
51
|
+
margin-right: 5px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.nav-pills > li > a > & {
|
55
|
+
margin-left: 3px;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
// Hover state, but only for links
|
60
|
+
a.badge {
|
61
|
+
&:hover,
|
62
|
+
&:focus {
|
63
|
+
color: $badge-link-hover-color;
|
64
|
+
text-decoration: none;
|
65
|
+
cursor: pointer;
|
66
|
+
}
|
67
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
//
|
2
|
+
// Breadcrumbs
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
.breadcrumb {
|
7
|
+
padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
|
8
|
+
margin-bottom: $line-height-computed;
|
9
|
+
list-style: none;
|
10
|
+
background-color: $breadcrumb-bg;
|
11
|
+
border-radius: $border-radius-base;
|
12
|
+
|
13
|
+
> li {
|
14
|
+
display: inline-block;
|
15
|
+
|
16
|
+
+ li:before {
|
17
|
+
content: #{$breadcrumb-separator}\00a0; // Unicode space added since inline-block means non-collapsing white-space
|
18
|
+
padding: 0 5px;
|
19
|
+
color: $breadcrumb-color;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
> .active {
|
24
|
+
color: $breadcrumb-active-color;
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,243 @@
|
|
1
|
+
//
|
2
|
+
// Button groups
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Make the div behave like a button
|
6
|
+
.btn-group,
|
7
|
+
.btn-group-vertical {
|
8
|
+
position: relative;
|
9
|
+
display: inline-block;
|
10
|
+
vertical-align: middle; // match .btn alignment given font-size hack above
|
11
|
+
> .btn {
|
12
|
+
position: relative;
|
13
|
+
float: left;
|
14
|
+
// Bring the "active" button to the front
|
15
|
+
&:hover,
|
16
|
+
&:focus,
|
17
|
+
&:active,
|
18
|
+
&.active {
|
19
|
+
z-index: 2;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
// Prevent double borders when buttons are next to each other
|
25
|
+
.btn-group {
|
26
|
+
.btn + .btn,
|
27
|
+
.btn + .btn-group,
|
28
|
+
.btn-group + .btn,
|
29
|
+
.btn-group + .btn-group {
|
30
|
+
margin-left: -1px;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
// Optional: Group multiple button groups together for a toolbar
|
35
|
+
.btn-toolbar {
|
36
|
+
margin-left: -5px; // Offset the first child's margin
|
37
|
+
@include clearfix;
|
38
|
+
|
39
|
+
.btn-group,
|
40
|
+
.input-group {
|
41
|
+
float: left;
|
42
|
+
}
|
43
|
+
> .btn,
|
44
|
+
> .btn-group,
|
45
|
+
> .input-group {
|
46
|
+
margin-left: 5px;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
51
|
+
border-radius: 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
|
55
|
+
.btn-group > .btn:first-child {
|
56
|
+
margin-left: 0;
|
57
|
+
&:not(:last-child):not(.dropdown-toggle) {
|
58
|
+
@include border-right-radius(0);
|
59
|
+
}
|
60
|
+
}
|
61
|
+
// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
|
62
|
+
.btn-group > .btn:last-child:not(:first-child),
|
63
|
+
.btn-group > .dropdown-toggle:not(:first-child) {
|
64
|
+
@include border-left-radius(0);
|
65
|
+
}
|
66
|
+
|
67
|
+
// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)
|
68
|
+
.btn-group > .btn-group {
|
69
|
+
float: left;
|
70
|
+
}
|
71
|
+
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
72
|
+
border-radius: 0;
|
73
|
+
}
|
74
|
+
.btn-group > .btn-group:first-child:not(:last-child) {
|
75
|
+
> .btn:last-child,
|
76
|
+
> .dropdown-toggle {
|
77
|
+
@include border-right-radius(0);
|
78
|
+
}
|
79
|
+
}
|
80
|
+
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
81
|
+
@include border-left-radius(0);
|
82
|
+
}
|
83
|
+
|
84
|
+
// On active and open, don't show outline
|
85
|
+
.btn-group .dropdown-toggle:active,
|
86
|
+
.btn-group.open .dropdown-toggle {
|
87
|
+
outline: 0;
|
88
|
+
}
|
89
|
+
|
90
|
+
|
91
|
+
// Sizing
|
92
|
+
//
|
93
|
+
// Remix the default button sizing classes into new ones for easier manipulation.
|
94
|
+
|
95
|
+
.btn-group-xs > .btn { @extend .btn-xs; }
|
96
|
+
.btn-group-sm > .btn { @extend .btn-sm; }
|
97
|
+
.btn-group-lg > .btn { @extend .btn-lg; }
|
98
|
+
|
99
|
+
|
100
|
+
// Split button dropdowns
|
101
|
+
// ----------------------
|
102
|
+
|
103
|
+
// Give the line between buttons some depth
|
104
|
+
.btn-group > .btn + .dropdown-toggle {
|
105
|
+
padding-left: 8px;
|
106
|
+
padding-right: 8px;
|
107
|
+
}
|
108
|
+
.btn-group > .btn-lg + .dropdown-toggle {
|
109
|
+
padding-left: 12px;
|
110
|
+
padding-right: 12px;
|
111
|
+
}
|
112
|
+
|
113
|
+
// The clickable button for toggling the menu
|
114
|
+
// Remove the gradient and set the same inset shadow as the :active state
|
115
|
+
.btn-group.open .dropdown-toggle {
|
116
|
+
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
117
|
+
|
118
|
+
// Show no shadow for `.btn-link` since it has no other button styles.
|
119
|
+
&.btn-link {
|
120
|
+
@include box-shadow(none);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
|
125
|
+
// Reposition the caret
|
126
|
+
.btn .caret {
|
127
|
+
margin-left: 0;
|
128
|
+
}
|
129
|
+
// Carets in other button sizes
|
130
|
+
.btn-lg .caret {
|
131
|
+
border-width: $caret-width-large $caret-width-large 0;
|
132
|
+
border-bottom-width: 0;
|
133
|
+
}
|
134
|
+
// Upside down carets for .dropup
|
135
|
+
.dropup .btn-lg .caret {
|
136
|
+
border-width: 0 $caret-width-large $caret-width-large;
|
137
|
+
}
|
138
|
+
|
139
|
+
|
140
|
+
// Vertical button groups
|
141
|
+
// ----------------------
|
142
|
+
|
143
|
+
.btn-group-vertical {
|
144
|
+
> .btn,
|
145
|
+
> .btn-group,
|
146
|
+
> .btn-group > .btn {
|
147
|
+
display: block;
|
148
|
+
float: none;
|
149
|
+
width: 100%;
|
150
|
+
max-width: 100%;
|
151
|
+
}
|
152
|
+
|
153
|
+
// Clear floats so dropdown menus can be properly placed
|
154
|
+
> .btn-group {
|
155
|
+
@include clearfix;
|
156
|
+
> .btn {
|
157
|
+
float: none;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
> .btn + .btn,
|
162
|
+
> .btn + .btn-group,
|
163
|
+
> .btn-group + .btn,
|
164
|
+
> .btn-group + .btn-group {
|
165
|
+
margin-top: -1px;
|
166
|
+
margin-left: 0;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
.btn-group-vertical > .btn {
|
171
|
+
&:not(:first-child):not(:last-child) {
|
172
|
+
border-radius: 0;
|
173
|
+
}
|
174
|
+
&:first-child:not(:last-child) {
|
175
|
+
border-top-right-radius: $border-radius-base;
|
176
|
+
@include border-bottom-radius(0);
|
177
|
+
}
|
178
|
+
&:last-child:not(:first-child) {
|
179
|
+
border-bottom-left-radius: $border-radius-base;
|
180
|
+
@include border-top-radius(0);
|
181
|
+
}
|
182
|
+
}
|
183
|
+
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
184
|
+
border-radius: 0;
|
185
|
+
}
|
186
|
+
.btn-group-vertical > .btn-group:first-child:not(:last-child) {
|
187
|
+
> .btn:last-child,
|
188
|
+
> .dropdown-toggle {
|
189
|
+
@include border-bottom-radius(0);
|
190
|
+
}
|
191
|
+
}
|
192
|
+
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
193
|
+
@include border-top-radius(0);
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
// Justified button groups
|
198
|
+
// ----------------------
|
199
|
+
|
200
|
+
.btn-group-justified {
|
201
|
+
display: table;
|
202
|
+
width: 100%;
|
203
|
+
table-layout: fixed;
|
204
|
+
border-collapse: separate;
|
205
|
+
> .btn,
|
206
|
+
> .btn-group {
|
207
|
+
float: none;
|
208
|
+
display: table-cell;
|
209
|
+
width: 1%;
|
210
|
+
}
|
211
|
+
> .btn-group .btn {
|
212
|
+
width: 100%;
|
213
|
+
}
|
214
|
+
|
215
|
+
> .btn-group .dropdown-menu {
|
216
|
+
left: auto;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
|
221
|
+
// Checkbox and radio options
|
222
|
+
//
|
223
|
+
// In order to support the browser's form validation feedback, powered by the
|
224
|
+
// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
|
225
|
+
// `display: none;` or `visibility: hidden;` as that also hides the popover.
|
226
|
+
// Simply visually hiding the inputs via `opacity` would leave them clickable in
|
227
|
+
// certain cases which is prevented by using `clip` and `pointer-events`.
|
228
|
+
// This way, we ensure a DOM element is visible to position the popover from.
|
229
|
+
//
|
230
|
+
// See https://github.com/twbs/bootstrap/pull/12794 and
|
231
|
+
// https://github.com/twbs/bootstrap/pull/14559 for more information.
|
232
|
+
|
233
|
+
[data-toggle="buttons"] {
|
234
|
+
> .btn,
|
235
|
+
> .btn-group > .btn {
|
236
|
+
input[type="radio"],
|
237
|
+
input[type="checkbox"] {
|
238
|
+
position: absolute;
|
239
|
+
clip: rect(0,0,0,0);
|
240
|
+
pointer-events: none;
|
241
|
+
}
|
242
|
+
}
|
243
|
+
}
|