-
-
Notifications
You must be signed in to change notification settings - Fork 112
Symbol selector #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Symbol selector #78
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f51c8bb
fix for TraceSelector
bpostlethwaite fa5dcc5
create a more reasonable scss system
bpostlethwaite 4b6f652
rename SubPanel -> MenuPanel and split MenuPanel
bpostlethwaite e573f95
delete all the unused constants
bpostlethwaite 8afad28
small fixes for props and truthy checks in components
bpostlethwaite d022316
introduce SymbolSelector
bpostlethwaite 21fb7ec
TraceMarkerSection handles naming section after trace types
bpostlethwaite e0e0fd5
CanvasSize
bpostlethwaite cf40784
pull trace handling from DefaultEditor into TraceSelector fixes #56
bpostlethwaite 35784a4
remove requirement that plotly.js is passed into Editor fixes #86
bpostlethwaite 274df5d
Merge pull request #87 from plotly/CanvasSize
bpostlethwaite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,3 +1,3 @@ | ||
.\+flex { display: flex; } | ||
.\+cursor-clickable { cursor: pointer; } | ||
.\+hover-grey:hover{ color: $color-gray-dark; } | ||
.\+hover-grey:hover{ color: $color-active-text; } |
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,59 @@ | ||
.field { | ||
align-items: center; | ||
border-top: 1px solid #f8f8f9; | ||
color: #6D6D6D; | ||
display: flex; | ||
font-size: $font-size; | ||
font-weight: $font-weight-light; | ||
justify-content: flex-start; | ||
line-height: $font-size; | ||
min-height: 32px; | ||
padding: 6px 0; | ||
width: 100%; | ||
} | ||
|
||
.field:not(:last-child) { | ||
border-bottom: 1px solid #f8f8f9; | ||
} | ||
|
||
.field__no-title { | ||
width: 100%; | ||
padding: 0 12px; | ||
} | ||
|
||
.field__no-title--center { | ||
text-align: center; | ||
} | ||
|
||
.field__title { | ||
padding-left: 0.5em; | ||
color: #69738a; | ||
font-size: 14px; | ||
width: 36%; | ||
display: inline-block; | ||
} | ||
|
||
.field__widget { | ||
width: 64%; | ||
padding-left: 18px; | ||
display: inline-block; | ||
padding-right: 12px; | ||
} | ||
|
||
.field__widget--postfix { | ||
width: 50%; | ||
padding-right: 0px; | ||
} | ||
|
||
.field__title { | ||
width: 30%; | ||
padding-left: 12px; | ||
display: inline-block; | ||
line-height: 18px; | ||
text-transform: capitalize; | ||
} | ||
|
||
.field__title-text { | ||
text-transform: capitalize; | ||
cursor: default; | ||
} |
This file contains hidden or 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,59 +1,2 @@ | ||
.field { | ||
align-items: center; | ||
border-top: 1px solid #f8f8f9; | ||
color: #6D6D6D; | ||
display: flex; | ||
font-size: 13px; | ||
font-weight: $font-weight-light; | ||
justify-content: flex-start; | ||
line-height: 13px; | ||
min-height: 32px; | ||
padding: 6px 0; | ||
width: 100%; | ||
} | ||
|
||
.field:not(:last-child) { | ||
border-bottom: 1px solid #f8f8f9; | ||
} | ||
|
||
.field__no-title { | ||
width: 100%; | ||
padding: 0 12px; | ||
} | ||
|
||
.field__no-title--center { | ||
text-align: center; | ||
} | ||
|
||
.field__title { | ||
padding-left: 0.5em; | ||
color: #69738a; | ||
font-size: 14px; | ||
width: 36%; | ||
display: inline-block; | ||
} | ||
|
||
.field__widget { | ||
width: 64%; | ||
padding-left: 18px; | ||
display: inline-block; | ||
padding-right: 12px; | ||
} | ||
|
||
.field__widget--postfix { | ||
width: 50%; | ||
padding-right: 0px; | ||
} | ||
|
||
.field__title { | ||
width: 30%; | ||
padding-left: 12px; | ||
display: inline-block; | ||
line-height: 18px; | ||
text-transform: capitalize; | ||
} | ||
|
||
.field__title-text { | ||
text-transform: capitalize; | ||
cursor: default; | ||
} | ||
@import 'field'; | ||
@import 'symbolselector'; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if
line-height
gets abstracted to a var, presumablyheight
should too? I see this a bunch of places below too.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Absolutely. Only the rudiments of a framework are in place. Some components have no variable coverage. It'll be part of a theming campaign at some point