Skip to content

Commit

Permalink
Merge pull request #247 from bustlelabs/remove-ck-prefix
Browse files Browse the repository at this point in the history
Use '__mobiledoc-' prefix for element class names
  • Loading branch information
mixonic committed Nov 30, 2015
2 parents 5c890e2 + 10eb490 commit 38736a0
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/css/cards.less
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.ck-card {
.__mobiledoc-card {
display: inline-block;
}
20 changes: 10 additions & 10 deletions src/css/editor.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@themeColor : rgb(62, 163, 255);
@themeColorText : darken(@themeColor, 10%);

.ck-editor {
.__mobiledoc-editor {
font-family: 'Lora', Georgia, serif;
margin: 1em 0;
color: #454545;
Expand All @@ -18,39 +18,39 @@
font-size: 120%;
line-height: 160%;
}
.ck-editor:focus {
.__mobiledoc-editor:focus {
outline: none;
}
.ck-editor:empty:before {
.__mobiledoc-editor:empty:before {
content: attr(data-placeholder);
color: #bbb;
cursor: text;
}
.ck-editor > * {
.__mobiledoc-editor > * {
position: relative;
}
.ck-editor a {
.__mobiledoc-editor a {
color: @themeColorText;
}
.ck-editor {
.__mobiledoc-editor {
h1, h2, h3, h4, h5, h6 {
font-family: 'Merriweather Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 800;
letter-spacing: -0.02em;
}
}
.ck-editor blockquote {
.__mobiledoc-editor blockquote {
border-left: 4px solid @themeColorText;
margin: 1em 0 1em -1.2em;
padding-left: 1.05em;
color: #a0a0a0;
}
.ck-editor img {
.__mobiledoc-editor img {
display: block;
max-width: 100%;
margin: 0 auto;
}
.ck-editor div,
.ck-editor iframe {
.__mobiledoc-editor div,
.__mobiledoc-editor iframe {
max-width: 100%;
}
10 changes: 5 additions & 5 deletions src/css/tooltip.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
100% { opacity: 1; }
}

.ck-tooltip {
.__mobiledoc-tooltip {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 0.7em;
white-space: nowrap;
Expand All @@ -24,7 +24,7 @@
-webkit-animation: fade-in 0.2s;
animation: fade-in 0.2s;
}
.ck-tooltip:before {
.__mobiledoc-tooltip:before {
content: '';
position: absolute;
left: 50%;
Expand All @@ -36,18 +36,18 @@
top: -0.4em;
margin-left: -0.4em;
}
.ck-tooltip:after { /* help keeps mouseover state when moving from link to tooltip */
.__mobiledoc-tooltip:after { /* help keeps mouseover state when moving from link to tooltip */
content: '';
position: absolute;
left: 0;
right: 0;
top: -0.4em;
height: 0.4em;
}
.ck-tooltip a {
.__mobiledoc-tooltip a {
color: #FFF;
text-decoration: none;
}
.ck-tooltip a:hover {
.__mobiledoc-tooltip a:hover {
text-decoration: underline;
}
2 changes: 1 addition & 1 deletion src/js/editor/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import {
} from '../utils/paste-utils';
import { DIRECTION } from 'mobiledoc-kit/utils/key';

export const EDITOR_ELEMENT_CLASS_NAME = 'ck-editor';
export const EDITOR_ELEMENT_CLASS_NAME = '__mobiledoc-editor';

const ELEMENT_EVENTS = ['keydown', 'keyup', 'input', 'cut', 'copy', 'paste'];
const DOCUMENT_EVENTS= ['mouseup'];
Expand Down
3 changes: 2 additions & 1 deletion src/js/renderers/editor-dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { addClassName } from '../utils/dom-utils';
import { MARKUP_SECTION_ELEMENT_NAMES } from '../models/markup-section';
import assert from '../utils/assert';

const CARD_ELEMENT_CLASS_NAME = '__mobiledoc-card';
export const NO_BREAK_SPACE = '\u00A0';
export const SPACE = ' ';

Expand Down Expand Up @@ -85,7 +86,7 @@ function renderCard() {
let wrapper = document.createElement('div');
let cardElement = document.createElement('div');
cardElement.contentEditable = false;
addClassName(cardElement, 'ck-card');
addClassName(cardElement, CARD_ELEMENT_CLASS_NAME);
wrapper.appendChild(document.createTextNode('\u200c'));
wrapper.appendChild(cardElement);
wrapper.appendChild(document.createTextNode('\u200c'));
Expand Down
2 changes: 1 addition & 1 deletion src/js/views/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class Tooltip extends View {
constructor(options) {
let { rootElement } = options;
let timeout;
options.classNames = ['ck-tooltip'];
options.classNames = ['__mobiledoc-tooltip'];
super(options);

this.addEventListener(rootElement, 'mouseover', (e) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/renderers/editor-dom-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ test('renders a card section', (assert) => {

// Use a wrapper an innerHTML to satisfy different browser attribute
// ordering quirks
let expectedWrapper = $(`<div>${ZWNJ}<div contenteditable="false" class="ck-card">I am a card</div>${ZWNJ}</div>`);
let expectedWrapper = $(`<div>${ZWNJ}<div contenteditable="false" class="__mobiledoc-card">I am a card</div>${ZWNJ}</div>`);
assert.equal(renderTree.rootElement.firstChild.innerHTML,
expectedWrapper.html(),
'card is rendered');
Expand Down

0 comments on commit 38736a0

Please sign in to comment.