-
Notifications
You must be signed in to change notification settings - Fork 33
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
Review du code lié à itowns #274
Draft
elias75015
wants to merge
2
commits into
develop
Choose a base branch
from
feature-review-itowns
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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 |
---|---|---|
@@ -0,0 +1,180 @@ | ||
/* BOOST RELIEF */ | ||
|
||
div[id^=GPboostRelief-] { | ||
font-size: 11px; | ||
width: 150px; | ||
} | ||
|
||
div[id^=GPboostRelief-] label { | ||
display: block; | ||
} | ||
|
||
div[id^=GPBoostReliefListContainer-] { | ||
position: relative; | ||
width: 100%; | ||
height: 28px; | ||
padding-left: 8px; | ||
line-height: 28px; | ||
} | ||
|
||
.GPlayerRelief, | ||
.GPlayerReliefValue { | ||
position: absolute; | ||
top: 0; | ||
} | ||
|
||
.GPlayerRelief { | ||
width: calc(100% - 60px); | ||
height: 28px; | ||
padding-left: 8px; | ||
} | ||
|
||
.GPlayerReliefValue { | ||
width: 32px; | ||
left: calc(100% - 40px); | ||
line-height: 28px; | ||
font-size: 10px; | ||
font-style: italic; | ||
cursor: default; | ||
} | ||
|
||
/* Showing/hiding boost relief panel */ | ||
|
||
label[id^=GPshowBoostReliefPicto] { | ||
display: inline-block; | ||
} | ||
|
||
input[id^=GPshowBoostRelief-] + label { | ||
display: block; | ||
} | ||
|
||
input[id^=GPshowBoostRelief-]:checked + label { | ||
display: none; | ||
} | ||
|
||
input[id^=GPshowBoostRelief-] + label + div { | ||
display: none; | ||
} | ||
|
||
input[id^=GPshowBoostRelief-]:checked + label + div { | ||
display: block; | ||
} | ||
|
||
/* Showing layer advanced tools */ | ||
|
||
div[id^=GPboostRelief-] input[type="checkbox"]:checked + label + .GPlayerAdvancedToolsRelief { | ||
max-height: 28px; | ||
opacity: 1; | ||
} | ||
|
||
.GPlayerAdvancedToolsRelief { | ||
display: block; | ||
position: relative; | ||
width: 100%; | ||
border-bottom : 1px dotted #CCC; | ||
background-color : #FFF; | ||
} | ||
|
||
.GPlayerReliefLayerId { | ||
position: relative; | ||
width: 100px; | ||
height: 28px; | ||
padding-left: 8px; | ||
line-height: 28px; | ||
overflow: hidden; | ||
white-space: nowrap; | ||
text-overflow: ellipsis; | ||
} | ||
|
||
/* Relief slider : general */ | ||
|
||
.GPlayerRelief input { | ||
-webkit-appearance: none; | ||
-moz-appearance: none; | ||
background: none; | ||
display: block; | ||
width: 100%; | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
overflow: hidden; | ||
cursor: pointer; | ||
} | ||
|
||
.GPlayerRelief input[type="range"]:focus { | ||
box-shadow: none; | ||
outline: none; | ||
} | ||
|
||
/* Relief slider : Chrome, Safari, Opera */ | ||
|
||
.GPlayerRelief input[type="range"]::-webkit-slider-runnable-track { | ||
-webkit-appearance: none; | ||
height: 3px; | ||
} | ||
|
||
.GPlayerRelief input[type="range"]::-webkit-slider-thumb:before { | ||
position: absolute; | ||
top: 0; | ||
right: 50%; | ||
left: -200px; | ||
height: 3px; | ||
pointer-events: none; | ||
} | ||
|
||
.GPlayerRelief input[type="range"]::-webkit-slider-thumb { | ||
-webkit-appearance: none; | ||
width: 9px; | ||
height: 17px; | ||
-webkit-appearance: none; | ||
border: 2px solid #FFF; | ||
background-color: #505050; | ||
position: relative; | ||
top: -7px; | ||
} | ||
|
||
/* Relief slider : Firefox */ | ||
|
||
.GPlayerRelief input[type="range"]::-moz-range-track { | ||
width: 80px; | ||
height: 3px; | ||
} | ||
|
||
.GPlayerRelief input[type="range"]::-moz-range-thumb { | ||
width: 5px; | ||
height: 13px; | ||
border: 2px solid #FFF; | ||
border-radius: 0; | ||
box-shadow: 0; | ||
background-color: #505050; | ||
position: relative; | ||
} | ||
|
||
/* Relief slider : IE */ | ||
|
||
.GPlayerRelief input[type="range"]::-ms-track { | ||
border: 0; | ||
border-color: transparent; | ||
border-radius: 0; | ||
border-width: 0; | ||
color: transparent; | ||
height: 3px; | ||
width: 80px; | ||
} | ||
|
||
.GPlayerRelief input[type="range"]::-ms-fill-lower, | ||
.GPlayerRelief input[type="range"]::-ms-fill-upper { | ||
background: transparent; | ||
border-radius: 0; | ||
} | ||
|
||
.GPlayerRelief input[type="range"]::-ms-thumb { | ||
width: 5px; | ||
height: 13px; | ||
border: 2px solid #FFF; | ||
background-color: #505050; | ||
} | ||
|
||
.GPlayerRelief input[type="range"]::-ms-tooltip { | ||
display: none; | ||
} |
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,61 @@ | ||
/* MOUSE POSITION */ | ||
|
||
/* Showing/hiding drawing panel */ | ||
|
||
label[id^=GPshowDrawingPicto-] { | ||
display: inline-block; | ||
} | ||
|
||
input[id^=GPshowDrawing-] + label { | ||
display: block; | ||
} | ||
|
||
input[id^=GPshowDrawing-]:checked + label { | ||
display: none; | ||
} | ||
|
||
input[id^=GPshowDrawing-] + label + div { | ||
display: none; | ||
} | ||
|
||
input[id^=GPshowDrawing-]:checked + label + div { | ||
display: block; | ||
} | ||
|
||
/* General panels */ | ||
|
||
div[id^=GPdrawingPanel-] { | ||
width: 240px; | ||
overflow: hidden; | ||
} | ||
|
||
/* Basic infos */ | ||
|
||
div[id^=GPdrawingBasicPanel-] { | ||
padding: 10px 15px; | ||
} | ||
|
||
.GPdrawingLabel, | ||
.GPdrawingCoords { | ||
display: inline-block; | ||
line-height: 20px; | ||
} | ||
|
||
.GPdrawingLabel { | ||
width: 80px; | ||
font-weight: bold; | ||
} | ||
|
||
.GPdrawingCoords { | ||
width: 110px; | ||
} | ||
|
||
/* markers selector */ | ||
.marker-input-radio { | ||
display : none ; | ||
} | ||
|
||
input.marker-input-radio:checked + label { | ||
border: 1px solid red; | ||
} | ||
|
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.
pour vérifier que tu as bien la bonne version de THREE.
tu peux ajouter dans ton code
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.
OK merci je vais essayer.