mirror of
https://github.com/codex-team/editor.js
synced 2026-03-16 07:35:48 +01:00
22 lines
380 B
CSS
22 lines
380 B
CSS
/**
|
|
* Styles for the Term tool
|
|
*
|
|
* CodeX Editor Inline Toolbar plugin
|
|
*/
|
|
.ce-term-tool__icon {
|
|
background: url('term.svg') no-repeat center center;
|
|
}
|
|
|
|
.ce-term-tool__icon--active {
|
|
background-image: url('term-blue.svg');
|
|
}
|
|
|
|
|
|
.marked {
|
|
background-color: #f4f4f4;
|
|
border: 1px solid #eaeaea;
|
|
color: #3c3434;
|
|
padding: 1px 3px;
|
|
border-radius: 2px;
|
|
margin: 0 2px;
|
|
}
|