mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-05 03:33:23 +01:00
58b3a12c6b
---------------------------------------------------------------------- Merge branch 'new_layouting_approach' into feature/printerdriver * new_layouting_approach: (22 commits) changed chmod adjustments to make preview be initialized and updated better (when resizing) updates css styles changes to how the draw and preview canvasses are positioned and initted many updates CSS and LESS files and generally a responsive scaling overhaul of the settings page new LESS simple js lib for managing the folded in/out state of the sidebars on the minimal interface arrow file used in the minimal doodle3d interface the resulting css files which LESS outputs removed this because it's being rolled into the styles.css by LESS moved logos to their own dir + removed a few redundant ones copy normalize.css to the LESS dir since it's a source file smallest size of the doodle3d logo started using LESS for stylesheeting commit of current state of this branch. It's a work-in-progress (comitting because I need to change to other branch) a lot of changes -> almost there but the drawing is not consistent yet across devices. Drawing on the draw canvas is going OK but the preview is not drawing well now. Giving up for now. changes (sry) intermediary progress commented out part of the css (not final solution) added todo for future ...
21 lines
629 B
Plaintext
21 lines
629 B
Plaintext
#verticalShapes {
|
|
position:absolute;
|
|
right: -56px;
|
|
bottom: 15px;
|
|
|
|
.verticalshape {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 2px solid #333;
|
|
border-radius: 0px 5px 5px 0px;
|
|
margin-top: 4px;
|
|
/*background-color: #f0f;*/
|
|
cursor: pointer;
|
|
|
|
&.straight { background: url('../img/vertical_shape_icons/straight.png') no-repeat; }
|
|
&.diverging { background: url('../img/vertical_shape_icons/diverging.png') no-repeat; }
|
|
&.converging { background: url('../img/vertical_shape_icons/converging.png') no-repeat; }
|
|
&.sinus { background: url('../img/vertical_shape_icons/sinus.png') no-repeat; }
|
|
}
|
|
|
|
} |