Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated bourbon mixins #132

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions components/template-cs-style-rules.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -624,16 +624,16 @@ body {
.dark-background .content-formatted .form_field_textarea::-webkit-input-placeholder {
color: var(--third-color);
}
.dark-background .content-formatted .form_field_textfield::-moz-placeholder,
.dark-background .content-formatted .form_field_textarea::-moz-placeholder {
.dark-background .content-formatted .form_field_textfield:-ms-input-placeholder,
.dark-background .content-formatted .form_field_textarea:-ms-input-placeholder {
color: var(--third-color);
}
.dark-background .content-formatted .form_field_textfield:-moz-placeholder,
.dark-background .content-formatted .form_field_textarea:-moz-placeholder {
.dark-background .content-formatted .form_field_textfield::-ms-input-placeholder,
.dark-background .content-formatted .form_field_textarea::-ms-input-placeholder {
color: var(--third-color);
}
.dark-background .content-formatted .form_field_textfield:-ms-input-placeholder,
.dark-background .content-formatted .form_field_textarea:-ms-input-placeholder {
.dark-background .content-formatted .form_field_textfield::placeholder,
.dark-background .content-formatted .form_field_textarea::placeholder {
color: var(--third-color);
}
.light-background .content-formatted .form_field_textfield,
Expand All @@ -646,19 +646,19 @@ body {
.light-background .content-formatted .form_field_select::-webkit-input-placeholder {
color: var(--primary-color);
}
.light-background .content-formatted .form_field_textfield::-moz-placeholder,
.light-background .content-formatted .form_field_textarea::-moz-placeholder,
.light-background .content-formatted .form_field_select::-moz-placeholder {
.light-background .content-formatted .form_field_textfield:-ms-input-placeholder,
.light-background .content-formatted .form_field_textarea:-ms-input-placeholder,
.light-background .content-formatted .form_field_select:-ms-input-placeholder {
color: var(--primary-color);
}
.light-background .content-formatted .form_field_textfield:-moz-placeholder,
.light-background .content-formatted .form_field_textarea:-moz-placeholder,
.light-background .content-formatted .form_field_select:-moz-placeholder {
.light-background .content-formatted .form_field_textfield::-ms-input-placeholder,
.light-background .content-formatted .form_field_textarea::-ms-input-placeholder,
.light-background .content-formatted .form_field_select::-ms-input-placeholder {
color: var(--primary-color);
}
.light-background .content-formatted .form_field_textfield:-ms-input-placeholder,
.light-background .content-formatted .form_field_textarea:-ms-input-placeholder,
.light-background .content-formatted .form_field_select:-ms-input-placeholder {
.light-background .content-formatted .form_field_textfield::placeholder,
.light-background .content-formatted .form_field_textarea::placeholder,
.light-background .content-formatted .form_field_select::placeholder {
color: var(--primary-color);
}
.comment-form .form_field {
Expand Down
28 changes: 15 additions & 13 deletions javascripts/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -10907,7 +10907,7 @@ var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123

// any word (or two) characters or numbers including two/three word month in arabic.
// includes scottish gaelic two word and hyphenated months
var matchWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i;
var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;


var regexes = {};
Expand Down Expand Up @@ -11062,7 +11062,7 @@ function get (mom, unit) {

function set$1 (mom, unit, value) {
if (mom.isValid() && !isNaN(value)) {
if (unit === 'FullYear' && isLeapYear(mom.year())) {
if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) {
mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month()));
}
else {
Expand Down Expand Up @@ -12168,10 +12168,11 @@ function defineLocale (name, config) {

function updateLocale(name, config) {
if (config != null) {
var locale, parentConfig = baseConfig;
var locale, tmpLocale, parentConfig = baseConfig;
// MERGE
if (locales[name] != null) {
parentConfig = locales[name]._config;
tmpLocale = loadLocale(name);
if (tmpLocale != null) {
parentConfig = tmpLocale._config;
}
config = mergeConfigs(parentConfig, config);
locale = new Locale(config);
Expand Down Expand Up @@ -12276,7 +12277,7 @@ function currentDateArray(config) {
// note: all values past the year are optional and will default to the lowest possible value.
// [year, month, day , hour, minute, second, millisecond]
function configFromArray (config) {
var i, date, input = [], currentDate, yearToUse;
var i, date, input = [], currentDate, expectedWeekday, yearToUse;

if (config._d) {
return;
Expand Down Expand Up @@ -12326,6 +12327,8 @@ function configFromArray (config) {
}

config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay();

// Apply timezone offset from input. The actual utcOffset can be changed
// with parseZone.
if (config._tzm != null) {
Expand All @@ -12337,7 +12340,7 @@ function configFromArray (config) {
}

// check for mismatching day of week
if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== config._d.getDay()) {
if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {
getParsingFlags(config).weekdayMismatch = true;
}
}
Expand Down Expand Up @@ -13913,7 +13916,7 @@ addRegexToken('Do', function (isStrict, locale) {

addParseToken(['D', 'DD'], DATE);
addParseToken('Do', function (input, array) {
array[DATE] = toInt(input.match(match1to2)[0], 10);
array[DATE] = toInt(input.match(match1to2)[0]);
});

// MOMENTS
Expand Down Expand Up @@ -14725,12 +14728,12 @@ addParseToken('x', function (input, array, config) {
// Side effect imports

//! moment.js
//! version : 2.19.1
//! version : 2.19.4
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
//! license : MIT
//! momentjs.com

hooks.version = '2.19.1';
hooks.version = '2.19.4';

setHookCallback(createLocal);

Expand Down Expand Up @@ -17350,7 +17353,7 @@ hooks.defineLocale('es-do', {
});

//! moment.js locale configuration
//! locale : Spanish(United State) [es-us]
//! locale : Spanish (United States) [es-us]
//! author : bustta : https://github.com/bustta

var monthsShortDot$1 = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_');
Expand Down Expand Up @@ -18829,8 +18832,7 @@ hooks.defineLocale('hr', {

var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');
function translate$4(number, withoutSuffix, key, isFuture) {
var num = number,
suffix;
var num = number;
switch (key) {
case 's':
return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';
Expand Down
2 changes: 1 addition & 1 deletion javascripts/application.min.js

Large diffs are not rendered by default.

Loading