, or .\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n color: @list-group-link-hover-color;\n background-color: @list-group-hover-bg;\n }\n}\n\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n\n.list-group-item {\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n background-color: @list-group-disabled-bg;\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a&,\n button& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n > .panel-heading + .panel-collapse > .list-group {\n .list-group-item:first-child {\n .border-top-radius(0);\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-left: @panel-body-padding;\n padding-right: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-bottom-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-small;\n\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n",".reset-text() {\n font-family: @font-family-base;\n // We deliberately do NOT reset font-size.\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: @line-height-base;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-base;\n\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~'0.6s ease-in-out');\n .backface-visibility(~'hidden');\n .perspective(1000px);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: 0;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n }\n\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: (@carousel-control-font-size * 1.5);\n height: (@carousel-control-font-size * 1.5);\n margin-top: (@carousel-control-font-size / -2);\n font-size: (@carousel-control-font-size * 1.5);\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: (@carousel-control-font-size / -2);\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: (@carousel-control-font-size / -2);\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table !important; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]}
\ No newline at end of file
diff --git a/public/assets/js/pnotify.js.map b/public/assets/js/pnotify.js.map
new file mode 100644
index 000000000..787f24c63
--- /dev/null
+++ b/public/assets/js/pnotify.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["src/pnotify.js"],"names":["root","factory","define","amd","$","exports","module","require","global","PNotify","jQuery","window","this","init","posTimer","body","default_stack","dir1","dir2","push","spacing1","spacing2","context","modal","jwindow","do_when_ready","prototype","options","stack","bind","clearTimeout","setTimeout","positionAll","createStackOverlay","overlay","class","prependTo","overlay_close","click","removeStack","state","timer","animTimer","styles","elem","container","title_container","text_container","animating","timerHide","parseOptions","extend","version","title","title_escape","text","text_escape","styling","addclass","cornerclass","auto_display","width","min_height","type","icon","animation","animate_speed","shadow","hide","delay","mouse_reset","remove","insert_brs","destroy","modules","runModules","event","arg","curArg","notice","that","css","display","aria-live","aria-role","mouseenter","e","cancelRemove","mouseleave","queueRemove","addClass","error","info","success","role","appendTo","removeClass","append","error_icon","info_icon","success_icon","notice_icon","html","String","replace","notices","merge","queuePosition","open","update","oldOpts","slideUp","slideDown","find","animate","minHeight","parent","length","position","animateIn","timer_hide","animateOut","detach","idx","inArray","splice","get","moreOptions","curOpts","optArray","curIndex","option","callback","finished","is","call","one","stillOpen","each","i","dontSkipHidden","nextpos1","firstpos1","nextpos2","firstpos2","addpos2","hidden","hasClass","show","curpos1","curpos2","csspos1","parseInt","isNaN","csspos2","height","prop","outerHeight","outerWidth","milliseconds","reload","removeAll","s","brighttheme","bootstrap3","fontawesome","document"],"mappings":"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","file":"pnotify.js","sourceRoot":"../"}
\ No newline at end of file
diff --git a/webpack.mix.js b/webpack.mix.js
index 3e16a8276..6d4b8e44a 100644
--- a/webpack.mix.js
+++ b/webpack.mix.js
@@ -12,6 +12,7 @@ const mix = require('laravel-mix');
*/
mix.copy('node_modules/bootstrap/dist/css/bootstrap.min.css', 'public/assets/css/bootstrap.min.css')
+ .copy('node_modules/bootstrap/dist/css/bootstrap.min.css.map', 'public/assets/css/bootstrap.min.css.map')
.copy('node_modules/bootstrap/dist/js/bootstrap.min.js', 'public/assets/js/bootstrap.min.js')
.copy('node_modules/datatables/media/css/jquery.dataTables.min.css', 'public/assets/css/jquery.dataTables.min.css')
.copy('node_modules/datatables/media/js/jquery.dataTables.min.js', 'public/assets/js/jquery.dataTables.min.js')
@@ -47,6 +48,7 @@ mix.copy('node_modules/bootstrap/dist/css/bootstrap.min.css', 'public/assets/css
.copy('node_modules/pnotify/dist/pnotify.nonblock.js', 'public/assets/js/pnotify.nonblock.js')
.copy('node_modules/pnotify/dist/pnotify.nonblock.js.map', 'public/assets/js/pnotify.nonblock.js.map')
.copy('node_modules/pnotify/dist/pnotify.js', 'public/assets/js/pnotify.js')
+ .copy('node_modules/pnotify/dist/pnotify.js.map', 'public/assets/js/pnotify.js.map')
.copy('node_modules/tinymce/tinymce.min.js', 'public/assets/js/tinymce.min.js')
.copy('node_modules/jquery-colorbox/jquery.colorbox-min.js', 'public/assets/js/jquery.colorbox-min.js')
.copy('node_modules/flexboxgrid2/flexboxgrid2.min.css', 'public/assets/css/flexboxgrid2.min.css')