Upgrade to Bootstrap 3

This commit is contained in:
benweet 2013-08-18 01:02:23 +01:00
parent 958e7413a7
commit 7488c14cf8
20 changed files with 197 additions and 200 deletions

View File

@ -1,6 +1,6 @@
div.jGrowl { div.jGrowl {
z-index: 1050; z-index: 1040;
color: #fff; color: #fff;
} }
@ -48,7 +48,7 @@ div.center div.jGrowl-notification, div.center div.jGrowl-closer {
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer { div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
background-color: #777; background-color: #777;
zoom: 1; zoom: 1;
width: 280px; width: 260px;
padding: 15px 20px; padding: 15px 20px;
margin-top: 5px; margin-top: 5px;
margin-bottom: 5px; margin-bottom: 5px;

View File

@ -195,6 +195,7 @@ define([
slidable: false, slidable: false,
livePaneResizing: true, livePaneResizing: true,
enableCursorHotkey: false, enableCursorHotkey: false,
resizerDblClickToggle: false,
north__spacing_open: 6, north__spacing_open: 6,
north__spacing_closed: 6, north__spacing_closed: 6,
spacing_open: 35, spacing_open: 35,
@ -266,6 +267,7 @@ define([
var editor = undefined; var editor = undefined;
var fileDesc = undefined; var fileDesc = undefined;
var documentContent = undefined; var documentContent = undefined;
var $editorElt = undefined;
core.initEditor = function(fileDescParam) { core.initEditor = function(fileDescParam) {
if(fileDesc !== undefined) { if(fileDesc !== undefined) {
eventMgr.onFileClosed(fileDesc); eventMgr.onFileClosed(fileDesc);
@ -273,8 +275,7 @@ define([
fileDesc = fileDescParam; fileDesc = fileDescParam;
documentContent = undefined; documentContent = undefined;
var initDocumentContent = fileDesc.content; var initDocumentContent = fileDesc.content;
var editorElt = $("#wmd-input"); $editorElt.val(initDocumentContent);
editorElt.val(initDocumentContent);
if(editor !== undefined) { if(editor !== undefined) {
// If the editor is already created // If the editor is already created
editor.undoManager.reinit(initDocumentContent, fileDesc.editorStart, fileDesc.editorEnd, fileDesc.editorScrollTop); editor.undoManager.reinit(initDocumentContent, fileDesc.editorStart, fileDesc.editorEnd, fileDesc.editorScrollTop);
@ -285,13 +286,13 @@ define([
var previewContainerElt = $(".preview-container"); var previewContainerElt = $(".preview-container");
// Store editor scrollTop on scroll event // Store editor scrollTop on scroll event
editorElt.scroll(function() { $editorElt.scroll(function() {
if(documentContent !== undefined) { if(documentContent !== undefined) {
fileDesc.editorScrollTop = $(this).scrollTop(); fileDesc.editorScrollTop = $(this).scrollTop();
} }
}); });
// Store editor selection on change // Store editor selection on change
editorElt.bind("keyup mouseup", function() { $editorElt.bind("keyup mouseup", function() {
if(documentContent !== undefined) { if(documentContent !== undefined) {
fileDesc.editorStart = this.selectionStart; fileDesc.editorStart = this.selectionStart;
fileDesc.editorEnd = this.selectionEnd; fileDesc.editorEnd = this.selectionEnd;
@ -347,7 +348,7 @@ define([
}); });
function checkDocumentChanges() { function checkDocumentChanges() {
var newDocumentContent = editorElt.val(); var newDocumentContent = $editorElt.val();
if(documentContent !== undefined && documentContent != newDocumentContent) { if(documentContent !== undefined && documentContent != newDocumentContent) {
fileDesc.content = newDocumentContent; fileDesc.content = newDocumentContent;
eventMgr.onContentChanged(fileDesc); eventMgr.onContentChanged(fileDesc);
@ -361,7 +362,7 @@ define([
return function() { return function() {
if(documentContent === undefined) { if(documentContent === undefined) {
makePreview(); makePreview();
editorElt.scrollTop(fileDesc.editorScrollTop); $editorElt.scrollTop(fileDesc.editorScrollTop);
previewContainerElt.scrollTop(fileDesc.previewScrollTop); previewContainerElt.scrollTop(fileDesc.previewScrollTop);
} }
else { else {
@ -416,7 +417,7 @@ define([
var uiLocked = false; var uiLocked = false;
core.lockUI = function(param) { core.lockUI = function(param) {
uiLocked = param; uiLocked = param;
$("#wmd-input").prop("disabled", uiLocked); $editorElt.prop("disabled", uiLocked);
$(".navbar-inner .btn").toggleClass("blocked", uiLocked); $(".navbar-inner .btn").toggleClass("blocked", uiLocked);
if(uiLocked) { if(uiLocked) {
$(".lock-ui").removeClass("hide"); $(".lock-ui").removeClass("hide");
@ -430,7 +431,6 @@ define([
var isDocumentPanelShown = false; var isDocumentPanelShown = false;
var isMenuPanelShown = false; var isMenuPanelShown = false;
core.onReady = function() { core.onReady = function() {
if(viewerMode === true) { if(viewerMode === true) {
$('body').html(bodyViewerHTML); $('body').html(bodyViewerHTML);
} }
@ -509,6 +509,7 @@ define([
// UI layout // UI layout
createLayout(); createLayout();
$editorElt = $("#wmd-input");
// Editor's textarea // Editor's textarea
$("#wmd-input, #md-section-helper").css({ $("#wmd-input, #md-section-helper").css({
@ -519,15 +520,11 @@ define([
}); });
// Handle tab key // Handle tab key
$("#wmd-input").keydown(function(e) { $editorElt.keydown(function(e) {
if(e.keyCode === 9) { if(e.keyCode === 9) {
var value = $(this).val(); var value = $editorElt.val();
var start = this.selectionStart; var start = this.selectionStart;
var end = this.selectionEnd; var end = this.selectionEnd;
// IE8 does not support selection attributes
if(start === undefined || end === undefined) {
return;
}
$(this).val(value.substring(0, start) + "\t" + value.substring(end)); $(this).val(value.substring(0, start) + "\t" + value.substring(end));
this.selectionStart = this.selectionEnd = start + 1; this.selectionStart = this.selectionEnd = start + 1;
e.preventDefault(); e.preventDefault();
@ -570,7 +567,7 @@ define([
}).on('hidden.bs.modal', function() { }).on('hidden.bs.modal', function() {
// Focus on the editor when modal is gone // Focus on the editor when modal is gone
isModalShown = false; isModalShown = false;
$("#wmd-input").focus(); $editorElt.focus();
}).keyup(function(e) { }).keyup(function(e) {
// Handle enter key in modals // Handle enter key in modals
if(e.which == 13 && !$(e.target).is("textarea")) { if(e.which == 13 && !$(e.target).is("textarea")) {

View File

@ -173,7 +173,7 @@ define([
filterFiles(''); filterFiles('');
// Scroll to the active file // Scroll to the active file
panelContentElt.scrollTop += documentListElt.querySelector('.file.active').getBoundingClientRect().top - 100; panelContentElt.scrollTop += documentListElt.querySelector('.file.active').getBoundingClientRect().top - 120;
} }
}); });

View File

@ -1,12 +1,13 @@
define([ define([
"jquery", "jquery",
"underscore", "underscore",
"crel",
"utils", "utils",
"classes/Extension", "classes/Extension",
"mousetrap", "mousetrap",
"fileSystem", "fileSystem",
"text!html/documentSelectorSettingsBlock.html", "text!html/documentSelectorSettingsBlock.html",
], function($, _, utils, Extension, mousetrap, fileSystem, documentSelectorSettingsBlockHTML) { ], function($, _, crel, utils, Extension, mousetrap, fileSystem, documentSelectorSettingsBlockHTML) {
var documentSelector = new Extension("documentSelector", 'Document Selector'); var documentSelector = new Extension("documentSelector", 'Document Selector');
documentSelector.settingsBlock = documentSelectorSettingsBlockHTML; documentSelector.settingsBlock = documentSelectorSettingsBlockHTML;
@ -33,33 +34,45 @@ define([
fileMgr = fileMgrParameter; fileMgr = fileMgrParameter;
}; };
var liEltTmpl = [
'<li class="<%= isCurrent ? "disabled" : "" %>" data-file-index="<%= fileDesc.fileIndex %>">',
' <a href="#">',
' <%= fileDesc.composeTitle() %>',
' </a>',
'</li>'
].join('');
var $editorElt = undefined;
var dropdownElt = undefined; var dropdownElt = undefined;
var liMap = undefined; var liEltMap = undefined;
var liArray = undefined; var liEltList = undefined;
var sortFunction = undefined; var sortFunction = undefined;
var selectFileDesc = undefined; var selectFileDesc = undefined;
var buildSelector = function() { var buildSelector = function() {
var liListHtml = _.chain(fileSystem).sortBy(sortFunction).reduce(function(result, fileDesc) {
return result + _.template(liEltTmpl, {
fileDesc: fileDesc,
isCurrent: fileDesc === selectFileDesc
});
}, '').value();
dropdownElt.innerHTML = liListHtml;
liMap = {}; liEltList = [];
dropdownElt.empty(); liEltMap = {};
_.chain(fileSystem).sortBy(sortFunction).each(function(fileDesc) { _.each(dropdownElt.querySelectorAll('li'), function(liElt) {
var aElt = $('<a href="#">').html(fileDesc.composeTitle()); var $liElt = $(liElt);
aElt.click(function() { liEltList.push($liElt);
if(!liMap[fileDesc.fileIndex].is(".disabled")) { var fileDesc = fileSystem[$liElt.data('fileIndex')];
liEltMap[fileDesc.fileIndex] = $liElt;
$liElt.find("a").click(function() {
if(!$liElt.hasClass("disabled")) {
fileMgr.selectFile(fileDesc); fileMgr.selectFile(fileDesc);
} }
else { else {
$("#wmd-input").focus(); $editorElt.focus();
} }
}); });
var liElt = $("<li>").append(aElt);
liMap[fileDesc.fileIndex] = liElt;
if(fileDesc === selectFileDesc) {
liElt.addClass("disabled");
}
dropdownElt.append(liElt);
}); });
liArray = _.values(liMap);
}; };
documentSelector.onFileSelected = function(fileDesc) { documentSelector.onFileSelected = function(fileDesc) {
@ -93,6 +106,8 @@ define([
} }
documentSelector.onReady = function() { documentSelector.onReady = function() {
$editorElt = $("#wmd-input");
if(documentSelector.config.orderBy == "title") { if(documentSelector.config.orderBy == "title") {
sortFunction = function(fileDesc) { sortFunction = function(fileDesc) {
return fileDesc.title.toLowerCase(); return fileDesc.title.toLowerCase();
@ -104,40 +119,15 @@ define([
}; };
} }
dropdownElt = $('<ul class="dropdown-menu dropdown-file-selector">'); dropdownElt = crel('ul', {
$('<div>').append('<div data-toggle="dropdown">').append(dropdownElt).appendTo('.ui-layout-resizer-north'); class: 'dropdown-menu dropdown-file-selector'
dropdownElt.dropdown(); });
document.querySelector('.ui-layout-resizer-north').appendChild(crel('div', crel('div', {
'data-toggle': 'dropdown'
}), dropdownElt));
var $dropdownElt = $(dropdownElt).dropdown();
var shortcutLi = undefined; var shortcutLi = undefined;
/*
$(".action-open-file").click(function() {
if($(".file-selector").parent().is(".open")) {
return;
}
filterFileSelector();
if(shortcutLi !== undefined) {
return;
}
_.defer(function() {
$("#file-search").val("").focus();
});
}).prop("title", _.template("<%= title %> <%= shortcutPrevious %> <%= shortcutNext %>", {
title: $(".action-open-file").prop("title"),
shortcutPrevious: documentSelector.config.shortcutPrevious,
shortcutNext: documentSelector.config.shortcutNext
}));
$("#file-search").keyup(function(e) {
if(e.which == 13 || e.which == 27) {
$(this).parent().click();
}
else {
filterFileSelector($(this).val());
}
}).click(function(event) {
event.stopPropagation();
});
*/
var documentPanelTogglerElt = $('.document-panel .collapse-button'); var documentPanelTogglerElt = $('.document-panel .collapse-button');
documentPanelTogglerElt.prop("title", _.template("<%= title %> <%= shortcutPrevious %> <%= shortcutNext %>", { documentPanelTogglerElt.prop("title", _.template("<%= title %> <%= shortcutPrevious %> <%= shortcutNext %>", {
title: documentPanelTogglerElt.prop("title"), title: documentPanelTogglerElt.prop("title"),
@ -149,14 +139,14 @@ define([
var shortcutPrevious = documentSelector.config.shortcutPrevious.toLowerCase(); var shortcutPrevious = documentSelector.config.shortcutPrevious.toLowerCase();
mousetrap.bind(shortcutPrevious, function() { mousetrap.bind(shortcutPrevious, function() {
if(shortcutLi === undefined) { if(shortcutLi === undefined) {
dropdownElt.dropdown('toggle'); $dropdownElt.dropdown('toggle');
shortcutLi = liMap[selectFileDesc.fileIndex]; shortcutLi = liEltMap[selectFileDesc.fileIndex];
} }
var liIndex = _.indexOf(liArray, shortcutLi) - 1; var liIndex = _.indexOf(liEltList, shortcutLi) - 1;
if(liIndex === -2) { if(liIndex === -2) {
liIndex = -1; liIndex = -1;
} }
shortcutLi = liArray[(liIndex + liArray.length) % liArray.length]; shortcutLi = liEltList[(liIndex + liEltList.length) % liEltList.length];
_.defer(function() { _.defer(function() {
shortcutLi.find("a").focus(); shortcutLi.find("a").focus();
}); });
@ -165,11 +155,11 @@ define([
var shortcutNext = documentSelector.config.shortcutNext.toLowerCase(); var shortcutNext = documentSelector.config.shortcutNext.toLowerCase();
mousetrap.bind(documentSelector.config.shortcutNext.toLowerCase(), function() { mousetrap.bind(documentSelector.config.shortcutNext.toLowerCase(), function() {
if(shortcutLi === undefined) { if(shortcutLi === undefined) {
dropdownElt.dropdown('toggle'); $dropdownElt.dropdown('toggle');
shortcutLi = liMap[selectFileDesc.fileIndex]; shortcutLi = liEltMap[selectFileDesc.fileIndex];
} }
var liIndex = _.indexOf(liArray, shortcutLi) + 1; var liIndex = _.indexOf(liEltList, shortcutLi) + 1;
shortcutLi = liArray[liIndex % liArray.length]; shortcutLi = liEltList[liIndex % liEltList.length];
_.defer(function() { _.defer(function() {
shortcutLi.find("a").focus(); shortcutLi.find("a").focus();
}); });

View File

@ -67,7 +67,7 @@ define([
notifications.onOfflineChanged = function(isOffline) { notifications.onOfflineChanged = function(isOffline) {
if(isOffline === true) { if(isOffline === true) {
showMessage("You are offline.", "icon-exclamation-sign msg-offline", { showMessage("You are offline.", "icon-attention-circled msg-offline", {
sticky: true, sticky: true,
close: function() { close: function() {
showMessage("You are back online!", "icon-signal"); showMessage("You are back online!", "icon-signal");

View File

@ -156,6 +156,7 @@ define([
}; };
eventMgr.addListener("onReady", function() { eventMgr.addListener("onReady", function() {
var $editorElt = $("#wmd-input");
fileMgr.selectFile(); fileMgr.selectFile();
@ -164,7 +165,7 @@ define([
$(".action-create-file").click(function() { $(".action-create-file").click(function() {
var fileDesc = fileMgr.createFile(); var fileDesc = fileMgr.createFile();
fileMgr.selectFile(fileDesc); fileMgr.selectFile(fileDesc);
var wmdInput = $("#wmd-input").focus().get(0); var wmdInput = $editorElt.focus().get(0);
if(wmdInput.setSelectionRange) { if(wmdInput.setSelectionRange) {
wmdInput.setSelectionRange(0, 0); wmdInput.setSelectionRange(0, 0);
} }
@ -193,7 +194,7 @@ define([
eventMgr.onTitleChanged(fileDesc); eventMgr.onTitleChanged(fileDesc);
} }
fileTitleInputElt.val(fileDesc.title); fileTitleInputElt.val(fileDesc.title);
$("#wmd-input").focus(); $editorElt.focus();
} }
fileTitleInputElt.blur(function() { fileTitleInputElt.blur(function() {
applyTitle(); applyTitle();
@ -210,7 +211,7 @@ define([
window.location.href = "."; window.location.href = ".";
}); });
$(".action-edit-document").click(function() { $(".action-edit-document").click(function() {
var content = $("#wmd-input").val(); var content = $editorElt.val();
var title = fileMgr.currentFile.title; var title = fileMgr.currentFile.title;
var fileDesc = fileMgr.createFile(title, content); var fileDesc = fileMgr.createFile(title, content);
fileMgr.selectFile(fileDesc); fileMgr.selectFile(fileDesc);

View File

@ -389,7 +389,7 @@
<p id="dropzone-import-harddrive-html" class="drop-zone">Drop <p id="dropzone-import-harddrive-html" class="drop-zone">Drop
files here</p> files here</p>
<p>Or insert your HTML code here:</p> <p>Or insert your HTML code here:</p>
<textarea id="input-convert-html"></textarea> <textarea id="input-convert-html" class="form-control"></textarea>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<a href="#" class="btn btn-default" data-dismiss="modal">Close</a> <a <a href="#" class="btn btn-default" data-dismiss="modal">Close</a> <a

View File

@ -711,7 +711,7 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
clearMenus() clearMenus()
if (!isActive) { if (!isActive) {
if ('ontouchstart' in document.documentElement) { if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
// if mobile we we use a backdrop because click events don't delegate // if mobile we we use a backdrop because click events don't delegate
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus) $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
} }
@ -723,9 +723,9 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
$parent $parent
.toggleClass('open') .toggleClass('open')
.trigger('shown.bs.dropdown') .trigger('shown.bs.dropdown')
}
$this.focus() $this.focus()
}
return false return false
} }
@ -851,7 +851,7 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
var Modal = function (element, options) { var Modal = function (element, options) {
this.options = options this.options = options
this.$element = $(element).on('click.dismiss.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) this.$element = $(element)
this.$backdrop = this.$backdrop =
this.isShown = null this.isShown = null
@ -880,6 +880,8 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
this.escape() this.escape()
this.$element.on('click.dismiss.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
this.backdrop(function () { this.backdrop(function () {
var transition = $.support.transition && that.$element.hasClass('fade') var transition = $.support.transition && that.$element.hasClass('fade')
@ -902,7 +904,7 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
transition ? transition ?
that.$element that.$element.find('.modal-dialog') // wait for modal to slide in
.one($.support.transition.end, function () { .one($.support.transition.end, function () {
that.$element.focus().trigger(e) that.$element.focus().trigger(e)
}) })
@ -1064,7 +1066,7 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
}) })
$(document) $(document)
.on('shown.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') }) .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
.on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') }) .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
}(window.jQuery); }(window.jQuery);

View File

@ -35,6 +35,7 @@
&:active, &:active,
&.active { &.active {
outline: 0; outline: 0;
background-image: none;
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
} }
@ -130,7 +131,7 @@
.button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small); .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
} }
.btn-xs { .btn-xs {
padding: 3px 5px; padding: 1px 5px;
} }

View File

@ -13,6 +13,9 @@
border-top: @caret-width-base solid @dropdown-caret-color; border-top: @caret-width-base solid @dropdown-caret-color;
border-right: @caret-width-base solid transparent; border-right: @caret-width-base solid transparent;
border-left: @caret-width-base solid transparent; border-left: @caret-width-base solid transparent;
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once fixed,
// we can just straight up remove this.
border-bottom: 0 dotted;
content: ""; content: "";
} }
@ -161,7 +164,9 @@
.navbar-fixed-bottom .dropdown { .navbar-fixed-bottom .dropdown {
// Reverse the caret // Reverse the caret
.caret { .caret {
border-top: 0; // Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once this
// gets fixed, restore `border-top: 0;`.
border-top: 0 dotted;
border-bottom: 4px solid @dropdown-caret-color; border-bottom: 4px solid @dropdown-caret-color;
content: ""; content: "";
} }

View File

@ -223,6 +223,7 @@
.col-md-12 { width: 100%; } .col-md-12 { width: 100%; }
// Push and pull columns for source order changes // Push and pull columns for source order changes
.col-md-push-0 { left: auto; }
.col-md-push-1 { left: percentage((1 / @grid-columns)); } .col-md-push-1 { left: percentage((1 / @grid-columns)); }
.col-md-push-2 { left: percentage((2 / @grid-columns)); } .col-md-push-2 { left: percentage((2 / @grid-columns)); }
.col-md-push-3 { left: percentage((3 / @grid-columns)); } .col-md-push-3 { left: percentage((3 / @grid-columns)); }
@ -235,6 +236,7 @@
.col-md-push-10 { left: percentage((10/ @grid-columns)); } .col-md-push-10 { left: percentage((10/ @grid-columns)); }
.col-md-push-11 { left: percentage((11/ @grid-columns)); } .col-md-push-11 { left: percentage((11/ @grid-columns)); }
.col-md-pull-0 { right: auto; }
.col-md-pull-1 { right: percentage((1 / @grid-columns)); } .col-md-pull-1 { right: percentage((1 / @grid-columns)); }
.col-md-pull-2 { right: percentage((2 / @grid-columns)); } .col-md-pull-2 { right: percentage((2 / @grid-columns)); }
.col-md-pull-3 { right: percentage((3 / @grid-columns)); } .col-md-pull-3 { right: percentage((3 / @grid-columns)); }
@ -248,6 +250,7 @@
.col-md-pull-11 { right: percentage((11/ @grid-columns)); } .col-md-pull-11 { right: percentage((11/ @grid-columns)); }
// Offsets // Offsets
.col-md-offset-0 { margin-left: 0; }
.col-md-offset-1 { margin-left: percentage((1 / @grid-columns)); } .col-md-offset-1 { margin-left: percentage((1 / @grid-columns)); }
.col-md-offset-2 { margin-left: percentage((2 / @grid-columns)); } .col-md-offset-2 { margin-left: percentage((2 / @grid-columns)); }
.col-md-offset-3 { margin-left: percentage((3 / @grid-columns)); } .col-md-offset-3 { margin-left: percentage((3 / @grid-columns)); }
@ -269,9 +272,9 @@
// Note that `.col-lg-12` doesn't get floated on purpose—there's no need since // Note that `.col-lg-12` doesn't get floated on purpose—there's no need since
// it's full-width. // it's full-width.
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg-desktop) {
.container { .container {
max-width: @container-large-desktop; max-width: @container-lg-desktop;
} }
.col-lg-1, .col-lg-1,
@ -301,6 +304,7 @@
.col-lg-12 { width: 100%; } .col-lg-12 { width: 100%; }
// Push and pull columns for source order changes // Push and pull columns for source order changes
.col-lg-push-0 { left: auto; }
.col-lg-push-1 { left: percentage((1 / @grid-columns)); } .col-lg-push-1 { left: percentage((1 / @grid-columns)); }
.col-lg-push-2 { left: percentage((2 / @grid-columns)); } .col-lg-push-2 { left: percentage((2 / @grid-columns)); }
.col-lg-push-3 { left: percentage((3 / @grid-columns)); } .col-lg-push-3 { left: percentage((3 / @grid-columns)); }
@ -313,6 +317,7 @@
.col-lg-push-10 { left: percentage((10/ @grid-columns)); } .col-lg-push-10 { left: percentage((10/ @grid-columns)); }
.col-lg-push-11 { left: percentage((11/ @grid-columns)); } .col-lg-push-11 { left: percentage((11/ @grid-columns)); }
.col-lg-pull-0 { right: auto; }
.col-lg-pull-1 { right: percentage((1 / @grid-columns)); } .col-lg-pull-1 { right: percentage((1 / @grid-columns)); }
.col-lg-pull-2 { right: percentage((2 / @grid-columns)); } .col-lg-pull-2 { right: percentage((2 / @grid-columns)); }
.col-lg-pull-3 { right: percentage((3 / @grid-columns)); } .col-lg-pull-3 { right: percentage((3 / @grid-columns)); }
@ -326,6 +331,7 @@
.col-lg-pull-11 { right: percentage((11/ @grid-columns)); } .col-lg-pull-11 { right: percentage((11/ @grid-columns)); }
// Offsets // Offsets
.col-lg-offset-0 { margin-left: 0; }
.col-lg-offset-1 { margin-left: percentage((1 / @grid-columns)); } .col-lg-offset-1 { margin-left: percentage((1 / @grid-columns)); }
.col-lg-offset-2 { margin-left: percentage((2 / @grid-columns)); } .col-lg-offset-2 { margin-left: percentage((2 / @grid-columns)); }
.col-lg-offset-3 { margin-left: percentage((3 / @grid-columns)); } .col-lg-offset-3 { margin-left: percentage((3 / @grid-columns)); }

View File

@ -412,12 +412,17 @@
&:hover, &:hover,
&:focus, &:focus,
&:active, &:active,
&.active { &.active,
.open .dropdown-toggle& {
color: @color; color: @color;
background-color: darken(@background, 8%); background-color: darken(@background, 8%);
border-color: darken(@border, 12%); border-color: darken(@border, 12%);
} }
&:active,
&.active,
.open .dropdown-toggle& {
background-image: none;
}
&.disabled, &.disabled,
&[disabled], &[disabled],
fieldset[disabled] & { fieldset[disabled] & {
@ -519,43 +524,28 @@
.container-fixed() { .container-fixed() {
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
padding-left: (@grid-gutter-width / 2);
padding-right: (@grid-gutter-width / 2);
.clearfix(); .clearfix();
} }
// Creates a wrapper for a series of columns // Creates a wrapper for a series of columns
.make-row(@gutter: @grid-gutter-width) { .make-row(@gutter: @grid-gutter-width) {
// Then clear the floated columns margin-left: (@gutter / -2);
margin-right: (@gutter / -2);
.clearfix(); .clearfix();
.container & {
@media (min-width: @screen-small) {
margin-left: (@gutter / -2);
margin-right: (@gutter / -2);
}
}
// Negative margin nested rows out to align the content of columns
.row {
margin-left: (@gutter / -2);
margin-right: (@gutter / -2);
}
} }
// Generate the extra small columns // Generate the extra small columns
.make-xs-column(@columns; @gutter: @grid-gutter-width) { .make-xs-column(@columns; @gutter: @grid-gutter-width) {
position: relative; position: relative;
float: left; float: left;
width: percentage((@columns / @grid-columns));
// Prevent columns from collapsing when empty // Prevent columns from collapsing when empty
min-height: 1px; min-height: 1px;
// Inner gutter via padding // Inner gutter via padding
padding-left: (@gutter / 2); padding-left: (@gutter / 2);
padding-right: (@gutter / 2); padding-right: (@gutter / 2);
@max-width: (@screen-small - 1);
// Calculate width based on number of columns available
@media (max-width: @max-width) {
width: percentage((@columns / @grid-columns));
}
} }
// Generate the small columns // Generate the small columns
@ -568,7 +558,7 @@
padding-right: (@gutter / 2); padding-right: (@gutter / 2);
// Calculate width based on number of columns available // Calculate width based on number of columns available
@media (min-width: @screen-small) { @media (min-width: @screen-sm) {
float: left; float: left;
width: percentage((@columns / @grid-columns)); width: percentage((@columns / @grid-columns));
} }
@ -576,17 +566,17 @@
// Generate the small column offsets // Generate the small column offsets
.make-sm-column-offset(@columns) { .make-sm-column-offset(@columns) {
@media (min-width: @screen-small) { @media (min-width: @screen-sm) {
margin-left: percentage((@columns / @grid-columns)); margin-left: percentage((@columns / @grid-columns));
} }
} }
.make-sm-column-push(@columns) { .make-sm-column-push(@columns) {
@media (min-width: @screen-small) { @media (min-width: @screen-sm) {
left: percentage((@columns / @grid-columns)); left: percentage((@columns / @grid-columns));
} }
} }
.make-sm-column-pull(@columns) { .make-sm-column-pull(@columns) {
@media (min-width: @screen-small) { @media (min-width: @screen-sm) {
right: percentage((@columns / @grid-columns)); right: percentage((@columns / @grid-columns));
} }
} }
@ -601,7 +591,7 @@
padding-right: (@gutter / 2); padding-right: (@gutter / 2);
// Calculate width based on number of columns available // Calculate width based on number of columns available
@media (min-width: @screen-medium) { @media (min-width: @screen-md) {
float: left; float: left;
width: percentage((@columns / @grid-columns)); width: percentage((@columns / @grid-columns));
} }
@ -609,17 +599,17 @@
// Generate the large column offsets // Generate the large column offsets
.make-md-column-offset(@columns) { .make-md-column-offset(@columns) {
@media (min-width: @screen-medium) { @media (min-width: @screen-md) {
margin-left: percentage((@columns / @grid-columns)); margin-left: percentage((@columns / @grid-columns));
} }
} }
.make-md-column-push(@columns) { .make-md-column-push(@columns) {
@media (min-width: @screen-medium) { @media (min-width: @screen-md) {
left: percentage((@columns / @grid-columns)); left: percentage((@columns / @grid-columns));
} }
} }
.make-md-column-pull(@columns) { .make-md-column-pull(@columns) {
@media (min-width: @screen-medium) { @media (min-width: @screen-md) {
right: percentage((@columns / @grid-columns)); right: percentage((@columns / @grid-columns));
} }
} }
@ -634,7 +624,7 @@
padding-right: (@gutter / 2); padding-right: (@gutter / 2);
// Calculate width based on number of columns available // Calculate width based on number of columns available
@media (min-width: @screen-large) { @media (min-width: @screen-lg) {
float: left; float: left;
width: percentage((@columns / @grid-columns)); width: percentage((@columns / @grid-columns));
} }
@ -642,17 +632,17 @@
// Generate the large column offsets // Generate the large column offsets
.make-lg-column-offset(@columns) { .make-lg-column-offset(@columns) {
@media (min-width: @screen-large) { @media (min-width: @screen-lg) {
margin-left: percentage((@columns / @grid-columns)); margin-left: percentage((@columns / @grid-columns));
} }
} }
.make-lg-column-push(@columns) { .make-lg-column-push(@columns) {
@media (min-width: @screen-large) { @media (min-width: @screen-lg) {
left: percentage((@columns / @grid-columns)); left: percentage((@columns / @grid-columns));
} }
} }
.make-lg-column-pull(@columns) { .make-lg-column-pull(@columns) {
@media (min-width: @screen-large) { @media (min-width: @screen-lg) {
right: percentage((@columns / @grid-columns)); right: percentage((@columns / @grid-columns));
} }
} }

View File

@ -51,20 +51,19 @@
// content for the user's viewport. // content for the user's viewport.
.navbar-collapse { .navbar-collapse {
max-height: 340px;
overflow-x: visible;
padding-right: @navbar-padding-horizontal; padding-right: @navbar-padding-horizontal;
padding-left: @navbar-padding-horizontal; padding-left: @navbar-padding-horizontal;
border-top: 1px solid darken(@navbar-bg, 7%); border-top: 1px solid darken(@navbar-bg, 7%);
box-shadow: inset 0 1px 0 rgba(255,255,255,.1); box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
// Clear floated elements and prevent collapsing of padding
.clearfix(); .clearfix();
// This is not automatically added to the `.navbar-fixed-top` because it causes
// z-index bugs in iOS7 (possibly earlier).
max-height: 340px;
overflow-x: visible;
overflow-y: auto;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
&.in {
overflow-y: auto;
}
@media (min-width: @grid-float-breakpoint) { @media (min-width: @grid-float-breakpoint) {
width: auto; width: auto;
padding-right: 0; padding-right: 0;
@ -94,8 +93,8 @@
// Static top (unfixed, but 100% wide) navbar // Static top (unfixed, but 100% wide) navbar
.navbar-static-top { .navbar-static-top {
border-width: 0 0 1px;
@media (min-width: @grid-float-breakpoint) { @media (min-width: @grid-float-breakpoint) {
border-width: 0 0 1px;
border-radius: 0; border-radius: 0;
} }
} }
@ -187,10 +186,7 @@
// the nav the full height of the horizontal nav (above 768px). // the nav the full height of the horizontal nav (above 768px).
.navbar-nav { .navbar-nav {
padding-top: (@navbar-padding-vertical / 2); margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;
padding-bottom: (@navbar-padding-vertical / 2);
margin-left: -@navbar-padding-horizontal;
margin-right: -@navbar-padding-horizontal;
> li > a { > li > a {
padding-top: 10px; padding-top: 10px;
@ -220,7 +216,7 @@
} }
} }
@media (max-width: @screen-phone-max) { @media (max-width: @screen-xs-max) {
// Dropdowns get custom display when collapsed // Dropdowns get custom display when collapsed
.open .dropdown-menu { .open .dropdown-menu {
position: static; position: static;
@ -267,8 +263,6 @@
@media (min-width: @grid-float-breakpoint) { @media (min-width: @grid-float-breakpoint) {
float: left; float: left;
margin: 0; margin: 0;
padding-top: 0;
padding-bottom: 0;
> li { > li {
float: left; float: left;
@ -317,7 +311,7 @@
.form-inline(); .form-inline();
.form-group { .form-group {
@media (max-width: @screen-phone-max) { @media (max-width: @screen-xs-max) {
margin-bottom: 5px; margin-bottom: 5px;
} }
} }
@ -518,7 +512,7 @@
} }
} }
@media (max-width: @screen-phone-max) { @media (max-width: @screen-xs-max) {
// Dropdowns get custom display // Dropdowns get custom display
.open .dropdown-menu { .open .dropdown-menu {
> .dropdown-header { > .dropdown-header {

View File

@ -42,17 +42,12 @@
} }
// Open dropdowns // Open dropdowns
&.open > a { .open > a {
&, &,
&:hover, &:hover,
&:focus { &:focus {
color: @nav-open-link-hover-color; background-color: @nav-link-hover-bg;
background-color: @link-color;
border-color: @link-color; border-color: @link-color;
.caret {
border-top-color: @nav-open-caret-border-color;
border-bottom-color: @nav-open-caret-border-color;
}
} }
} }
@ -159,14 +154,20 @@
.nav-justified { .nav-justified {
width: 100%; width: 100%;
> li { > li {
float: none; float: none;
display: table-cell; > a {
width: 1%;
> a {
text-align: center; text-align: center;
} }
} }
@media (min-width: @screen-sm) {
> li {
display: table-cell;
width: 1%;
}
}
} }
// Move borders to anchors instead of bottom of list // Move borders to anchors instead of bottom of list

View File

@ -23,7 +23,7 @@
> a:hover, > a:hover,
> a:focus { > a:focus {
text-decoration: none; text-decoration: none;
background-color: @pagination-active-bg; background-color: @pagination-hover-bg;
} }
} }

View File

@ -15,6 +15,7 @@
// Panel contents // Panel contents
.panel-body { .panel-body {
padding: 15px; padding: 15px;
.clearfix();
} }
// List groups in panels // List groups in panels
@ -23,7 +24,7 @@
// any kind of custom content between the two. // any kind of custom content between the two.
.panel { .panel {
.list-group { > .list-group {
margin-bottom: 0; margin-bottom: 0;
.list-group-item { .list-group-item {
@ -59,7 +60,7 @@
.panel-title { .panel-title {
margin-top: 0; margin-top: 0;
margin-bottom: 0; margin-bottom: 0;
font-size: (@font-size-base * 1.25); font-size: ceil((@font-size-base * 1.125));
> a { > a {
color: inherit; color: inherit;
} }

View File

@ -37,98 +37,98 @@
.visible-xs { .visible-xs {
.responsive-visibility(); .responsive-visibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-invisibility(); .responsive-invisibility();
} }
} }
.visible-sm { .visible-sm {
.responsive-invisibility(); .responsive-invisibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-invisibility(); .responsive-invisibility();
} }
} }
.visible-md { .visible-md {
.responsive-invisibility(); .responsive-invisibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-invisibility(); .responsive-invisibility();
} }
} }
.visible-lg { .visible-lg {
.responsive-invisibility(); .responsive-invisibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-visibility(); .responsive-visibility();
} }
} }
.hidden-xs { .hidden-xs {
.responsive-invisibility(); .responsive-invisibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-visibility(); .responsive-visibility();
} }
} }
.hidden-sm { .hidden-sm {
.responsive-visibility(); .responsive-visibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-visibility(); .responsive-visibility();
} }
} }
.hidden-md { .hidden-md {
.responsive-visibility(); .responsive-visibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility(); .responsive-invisibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-visibility(); .responsive-visibility();
} }
} }
.hidden-lg { .hidden-lg {
.responsive-visibility(); .responsive-visibility();
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) { @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility(); .responsive-visibility();
} }
@media (min-width: @screen-large-desktop) { @media (min-width: @screen-lg) {
.responsive-invisibility(); .responsive-invisibility();
} }
} }
@ -137,7 +137,6 @@
.visible-print { .visible-print {
.responsive-invisibility(); .responsive-invisibility();
} }
.hidden-print { }
@media print { @media print {
.visible-print { .visible-print {

View File

@ -35,6 +35,7 @@ th {
// Bottom align for column headings // Bottom align for column headings
thead > tr > th { thead > tr > th {
vertical-align: bottom; vertical-align: bottom;
border-bottom: 2px solid @table-border-color;
} }
// Remove top border from thead by default // Remove top border from thead by default
caption + thead, caption + thead,
@ -92,6 +93,14 @@ th {
} }
} }
} }
> thead {
> tr {
> th,
> td {
border-bottom-width: 2px;
}
}
}
} }

View File

@ -193,26 +193,25 @@
// -------------------------------------------------- // --------------------------------------------------
// Extra small screen / phone // Extra small screen / phone
@screen-xsmall: 480px; @screen-xs: 480px;
@screen-phone: @screen-xsmall; @screen-phone: @screen-xs;
// Small screen / tablet // Small screen / tablet
@screen-small: 768px; @screen-sm: 768px;
@screen-tablet: @screen-small; @screen-tablet: @screen-sm;
// Medium screen / desktop // Medium screen / desktop
@screen-medium: 992px; @screen-md: 992px;
@screen-desktop: @screen-medium; @screen-desktop: @screen-md;
// Large screen / wide desktop // Large screen / wide desktop
@screen-large: 1200px; @screen-lg: 1200px;
@screen-large-desktop: @screen-large; @screen-lg-desktop: @screen-lg;
// So media queries don't overlap when required, provide a maximum // So media queries don't overlap when required, provide a maximum
@screen-phone-max: (@screen-small - 1); @screen-xs-max: (@screen-sm - 1);
@screen-small-max: (@screen-medium - 1); @screen-sm-max: (@screen-md - 1);
@screen-tablet-max: (@screen-desktop - 1); @screen-md-max: (@screen-lg - 1);
@screen-desktop-max: (@screen-large-desktop - 1);
// Grid system // Grid system
@ -600,10 +599,10 @@
// -------------------------------------------------- // --------------------------------------------------
// Small screen / tablet // Small screen / tablet
@container-tablet: 720px; @container-tablet: ((720px + @grid-gutter-width));
// Medium screen / desktop // Medium screen / desktop
@container-desktop: 940px; @container-desktop: ((940px + @grid-gutter-width));
// Large screen / wide desktop // Large screen / wide desktop
@container-large-desktop: 1140px; @container-lg-desktop: ((1140px + @grid-gutter-width));

View File

@ -87,7 +87,7 @@ body {
} }
.move-to-front { .move-to-front {
z-index: 1031 !important; z-index: 1050 !important;
} }
@ -401,8 +401,10 @@ body {
right: 30px; right: 30px;
left: auto; left: auto;
margin: 0; margin: 0;
max-height: 500px;
min-width: 280px; min-width: 280px;
max-width: 400px;
overflow-x: hidden;
max-height: 400px;
overflow-y: auto; overflow-y: auto;
} }
@ -1008,9 +1010,9 @@ input[type="file"] {
} }
.modal-import-harddrive-html textarea { .modal-import-harddrive-html textarea {
width: 500px; width: 530px;
max-width: 500px; max-width: 530px;
height: 100px; height: 120px;
} }
#md-section-helper { #md-section-helper {