-
-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #422 from mitcht/build-0.1.10
Build 0.1.10
- Loading branch information
Showing
16 changed files
with
338 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,8 @@ | |
dev.html | ||
jsdoc.json | ||
/.idea | ||
node_modules | ||
.tmp | ||
.sass-cache | ||
bower_components | ||
npm-debug.log |
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
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
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 |
---|---|---|
@@ -1,7 +1,116 @@ | ||
/*! | ||
angular-xeditable - 0.1.9 | ||
Edit-in-place for angular.js | ||
Build date: 2015-03-26 | ||
*/ | ||
|
||
.editable-wrap{display:inline-block;white-space:nowrap;margin:0}.editable-wrap .editable-controls,.editable-wrap .editable-error{margin-bottom:0}.editable-wrap .editable-controls>input,.editable-wrap .editable-controls>select,.editable-wrap .editable-controls>textarea{margin-bottom:0}.editable-wrap .editable-input{display:inline-block}.editable-buttons{display:inline-block;vertical-align:top}.editable-buttons button{margin-left:5px}.editable-input.editable-has-buttons{width:auto}.editable-bstime .editable-input input[type=text]{width:46px}.editable-bstime .well-small{margin-bottom:0;padding:10px}.editable-range output{display:inline-block;min-width:30px;vertical-align:top;text-align:center}.editable-color input[type=color]{width:50px}.editable-checkbox label span,.editable-checklist label span,.editable-radiolist label span{margin-left:7px;margin-right:10px}.editable-hide{display:none!important}.editable-click,a.editable-click{text-decoration:none;color:#428bca;border-bottom:dashed 1px #428bca}.editable-click:hover,a.editable-click:hover{text-decoration:none;color:#2a6496;border-bottom-color:#2a6496}.editable-empty,.editable-empty:hover,.editable-empty:focus,a.editable-empty,a.editable-empty:hover,a.editable-empty:focus{font-style:italic;color:#D14;text-decoration:none} | ||
/* ==== editable-form ==== */ | ||
|
||
/* class for single editable element */ | ||
.editable-wrap { | ||
display: inline-block; | ||
white-space: nowrap; | ||
margin: 0; | ||
} | ||
|
||
/* remove bottom-margin for bootstrap */ | ||
.editable-wrap .editable-controls, | ||
.editable-wrap .editable-error { | ||
margin-bottom: 0; | ||
} | ||
|
||
/* remove bottom-margin of inputs */ | ||
.editable-wrap .editable-controls > input, | ||
.editable-wrap .editable-controls > select, | ||
.editable-wrap .editable-controls > textarea { | ||
margin-bottom: 0; | ||
} | ||
|
||
/* keep buttons on the same line */ | ||
.editable-wrap .editable-input { | ||
display: inline-block; | ||
} | ||
|
||
.editable-buttons { | ||
display: inline-block; | ||
vertical-align: top; | ||
} | ||
|
||
.editable-buttons button { | ||
margin-left: 5px; | ||
} | ||
|
||
/* in bootstrap width: 100% => buttons go outside the box */ | ||
.editable-input.editable-has-buttons { | ||
width: auto; | ||
} | ||
|
||
/* ==== editable-bstime ==== */ | ||
|
||
/* workaround for bootstrap that sets width: 100% and inputs become too wide */ | ||
.editable-bstime .editable-input input[type="text"] { | ||
width: 46px; | ||
} | ||
|
||
/* less padding for .well */ | ||
.editable-bstime .well-small { | ||
margin-bottom: 0; | ||
padding: 10px; | ||
} | ||
|
||
/* ==== editable-range ==== */ | ||
|
||
.editable-range output { | ||
display: inline-block; | ||
min-width: 30px; | ||
vertical-align: top; | ||
text-align: center; | ||
} | ||
|
||
/* ==== editable-color ==== */ | ||
|
||
.editable-color input[type="color"] { | ||
width: 50px; | ||
} | ||
|
||
|
||
/* ==== editable-checkbox ==== */ | ||
/* ==== editable-checklist ==== */ | ||
/* ==== editable-radiolist ==== */ | ||
|
||
.editable-checkbox label span, | ||
.editable-checklist label span, | ||
.editable-radiolist label span { | ||
margin-left: 7px; | ||
margin-right: 10px; | ||
} | ||
|
||
/* ==== element ==== */ | ||
|
||
/* hiding element */ | ||
.editable-hide { | ||
display: none !important; | ||
} | ||
|
||
.editable-click, | ||
a.editable-click { | ||
text-decoration: none; | ||
color: #428bca; | ||
border-bottom: dashed 1px #428bca; | ||
} | ||
|
||
.editable-click:hover, | ||
a.editable-click:hover { | ||
text-decoration: none; | ||
color: #2a6496; | ||
border-bottom-color: #2a6496; | ||
} | ||
|
||
/* editable-empty */ | ||
.editable-empty, | ||
.editable-empty:hover, | ||
.editable-empty:focus, | ||
a.editable-empty, | ||
a.editable-empty:hover, | ||
a.editable-empty:focus { | ||
font-style: italic; | ||
color: #DD1144; | ||
text-decoration: none; | ||
} | ||
|
||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.