mirror of
https://github.com/codex-team/editor.js
synced 2026-03-16 15:45:47 +01:00
* Finish core functionality of the tool link * Some css beauty * Fix css border: 0 * Change to className.add() * Remove 'to' in comments * Use this where it is real Remove default type setting in Input * Code refactoring * Implement save() method * Optimise variable usage * Add UI maker * Clearfix Objects clone Css in tool-link plugin * Fix * Fix CSS
59 lines
1 KiB
CSS
59 lines
1 KiB
CSS
.clearfix:after {
|
|
visibility: hidden;
|
|
display: block;
|
|
font-size: 0;
|
|
content: " ";
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
|
|
.ceditor-tool-link-input {
|
|
outline: none;
|
|
border: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.tool-link-panel {
|
|
width: 50%;
|
|
position: relative;
|
|
margin: 25px auto;
|
|
background: #f8f7ef;
|
|
border: 1px solid transparent;
|
|
padding: 25px 30px;
|
|
}
|
|
|
|
.ceditor-tool-link .tool-link-image {
|
|
float:right;
|
|
width: 75px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.ceditor-tool-link .tool-link-title {
|
|
display: block;
|
|
width: 340px;
|
|
margin-bottom: 4px;
|
|
line-height: 1.2em;
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
}
|
|
|
|
.ceditor-tool-link .tool-link-description {
|
|
display: block;
|
|
width: 400px;
|
|
margin-top: 10px;
|
|
font-size: 14px;
|
|
color: #000;
|
|
}
|
|
|
|
.ceditor-tool-link .tool-link-link {
|
|
display: block;
|
|
width: 360px;
|
|
font-size: 10px;
|
|
margin-bottom: 4px;
|
|
letter-spacing: 1px;
|
|
overflow: hidden;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
color: rgba(165,156,86,.8);
|
|
}
|