Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 5592a74

Browse files
committed
fixCustomizeTextWidth
- trims width of customize text
1 parent 90b97f0 commit 5592a74

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

css/obBase.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4012,11 +4012,14 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
40124012
40134013
.customizePrimaryColorRecommendations.show,
40144014
.customizeSecondaryColorRecommendations.show,
4015-
.customizeBackgroundColorRecommendations.show,
4016-
.customizeTextColorRecommendations.show {
4015+
.customizeBackgroundColorRecommendations.show {
40174016
width: 273px;
40184017
}
40194018
4019+
.customizeTextColorRecommendations.show {
4020+
width: 121px;
4021+
}
4022+
40204023
.customColorChoice {
40214024
background: #fff;
40224025
display: inline-block;

js/views/userPageVw.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,6 @@ module.exports = baseVw.extend({
11581158
$customColorChoice.first().css('background','transparent'); // set to transparent
11591159

11601160
for (var i = 2; i <= 6; i++) {
1161-
console.log($customColorChoice.eq(i));
11621161
$customColorChoice.eq(i).css('background', recommendedPrimaryColors[Math.floor(Math.random() * recommendedPrimaryColors.length)]); // random colors to start
11631162
}
11641163

0 commit comments

Comments
 (0)