CC-6069: Pick consistent design for New buttons

* First shot at blue New buttons
This commit is contained in:
Albert Santoni 2015-08-28 16:21:20 -04:00
parent 71f149f95f
commit 311956eb74
6 changed files with 20 additions and 7 deletions

View file

@ -119,7 +119,7 @@ var AIRTIME = (function(AIRTIME) {
$menu
.append(
"<div class='btn-group' title=" + $.i18n._('New') + ">" +
"<button class='btn btn-small' id='sb-new'>" +
"<button class='btn btn-small btn-new' id='sb-new'>" +
"<i class='icon-white icon-plus'></i>" +
"<span>" + $.i18n._('New') + "</span>" +
"</button>" +

View file

@ -292,7 +292,7 @@ var AIRTIME = (function(AIRTIME) {
var $menu = $("<div class='btn-toolbar' />");
$menu.append("<div class='btn-group'>" +
"<button class='btn btn-small' id='his_create'>" +
"<button class='btn btn-small btn-new' id='his_create'>" +
"<i class='icon-white icon-plus'></i>" +
$.i18n._("New Log Entry") +
"</button>" +

View file

@ -30,7 +30,7 @@ function makeAddShowButton() {
$('.fc-header-left')
.prepend('<span class="fc-header-space"></span>')
.prepend('<span class="btn-group">' +
'<button onclick="showForm()" class="add-button btn btn-small">' +
'<button onclick="showForm()" class="add-button btn btn-small btn-new">' +
'<i class="icon-white icon-plus"></i>' +
'<span>' + $.i18n._("New Show") + '</span>' +
'</button>' +