-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
unknown
authored and
unknown
committed
Oct 1, 2014
1 parent
f8acb54
commit d40be92
Showing
6 changed files
with
219 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
'use strict'; | ||
|
||
edittext.editorFactory = { | ||
criar: function(editor) { | ||
|
||
return new edittext.Editor(editor); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
.edittext{ | ||
} | ||
|
||
.edittext button { | ||
background-color: transparent; | ||
border: 0px; | ||
width: 40px; | ||
height: 40px; | ||
cursor: pointer; | ||
} | ||
|
||
.edittext button:hover{ | ||
color: #428bca; | ||
} | ||
|
||
.edittext button.ativo{ | ||
color: #428bca; | ||
} | ||
|
||
|
||
.edittext button span{ | ||
font-size: 18px; | ||
} | ||
|
||
.edittext-input { | ||
width: 100%; | ||
} | ||
|
||
.edittext-input iframe{ | ||
overflow: auto; | ||
width: 100%; | ||
border: 1px solid #000000; | ||
} | ||
|
||
.edittext-controles { | ||
position: relative; | ||
width: 100%; | ||
border: 1px solid #000000; | ||
} | ||
|
||
.icon-icon-bold, .icon-icon-underline, .icon-icon-italic{ | ||
font-size: 20px !important; | ||
} | ||
|
||
.icon-font-size{ | ||
font-size: 17px !important; | ||
} | ||
|
||
.edittext-color-picker { | ||
position: absolute; | ||
width: 130px !important; | ||
height: 150px !important; | ||
display: none; | ||
top: 15px; | ||
left: 200px | ||
|
||
} | ||
|
||
.edittext-color-picker .picker-wrapper { | ||
width: 70%; | ||
height: 100% !important; | ||
display: inline-block; | ||
background-color: white; | ||
position: relative; | ||
} | ||
|
||
.edittext-color-picker .slider-wrapper { | ||
width: 10%; | ||
height: 100% !important; | ||
display: inline-block; | ||
background-color: white; | ||
position: relative; | ||
} | ||
|
||
.picker-indicator { | ||
width: 3px; | ||
height: 3px; | ||
position: absolute; | ||
border: 2px solid white; | ||
border-radius: 5px | ||
} | ||
.slider-indicator { | ||
width: 90%; | ||
height: 5px; | ||
position: absolute; | ||
border: 1px solid black; | ||
} | ||
|
||
.edittext-color-picker .edittext-color-picker-control { | ||
width: 10%; | ||
display: inline-block; | ||
} | ||
|
||
.edittext-color-picker-control button { | ||
width: 20px; | ||
height: 20px; | ||
font-size: 10px; | ||
} | ||
|
||
.edittext-color-picker-control button:hover { | ||
color: #cccccc; | ||
} | ||
|
||
@charset "UTF-8"; | ||
|
||
@font-face { | ||
font-family: "untitled-font-1"; | ||
src:url("fonts/untitled-font-1.eot"); | ||
src:url("fonts/untitled-font-1.eot?#iefix") format("embedded-opentype"), | ||
url("fonts/untitled-font-1.woff") format("woff"), | ||
url("fonts/untitled-font-1.ttf") format("truetype"), | ||
url("fonts/untitled-font-1.svg#untitled-font-1") format("svg"); | ||
font-weight: normal; | ||
font-style: normal; | ||
|
||
} | ||
|
||
[data-icon]:before { | ||
font-family: "untitled-font-1" !important; | ||
content: attr(data-icon); | ||
font-style: normal !important; | ||
font-weight: normal !important; | ||
font-variant: normal !important; | ||
text-transform: none !important; | ||
speak: none; | ||
line-height: 1; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
[class^="icon-"]:before, | ||
[class*=" icon-"]:before { | ||
font-family: "untitled-font-1" !important; | ||
font-style: normal !important; | ||
font-weight: normal !important; | ||
font-variant: normal !important; | ||
text-transform: none !important; | ||
speak: none; | ||
line-height: 1; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
.icon-bold:before { | ||
content: "a"; | ||
} | ||
.icon-italic:before { | ||
content: "b"; | ||
} | ||
.icon-underline:before { | ||
content: "c"; | ||
} | ||
.icon-font-size:before { | ||
content: "d"; | ||
} | ||
.icon-color-picker:before { | ||
content: "e"; | ||
} | ||
.icon-list-ordered:before { | ||
content: "f"; | ||
} | ||
.icon-list-unordered:before { | ||
content: "g"; | ||
} | ||
.icon-link:before { | ||
content: "h"; | ||
} | ||
.icon-unlink:before { | ||
content: "i"; | ||
} | ||
.icon-cancel:before { | ||
content: "j"; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters