|
Kite |
8c766d |
/* -----------------------------------------------------------------------------
|
|
manongjohn |
d6e3cc |
Schematic Viewer
|
|
manongjohn |
d6e3cc |
----------------------------------------------------------------------------- */
|
|
manongjohn |
d6e3cc |
|
|
manongjohn |
d6e3cc |
SchematicViewer {
|
|
manongjohn |
d6e3cc |
qproperty-TextColor: @schematic-text-color;
|
|
manongjohn |
d6e3cc |
qproperty-VerticalLineColor: @schematic-VerticalLine-color;
|
|
manongjohn |
d6e3cc |
|
|
Kite |
521c84 |
qproperty-LevelColumnColor: @xsheet-LevelColumn-color;
|
|
Kite |
521c84 |
qproperty-VectorColumnColor: @xsheet-VectorColumn-color;
|
|
Kite |
521c84 |
qproperty-ChildColumnColor: @xsheet-ChildColumn-color;
|
|
Kite |
521c84 |
qproperty-FullcolorColumnColor: @xsheet-FullColorColumn-color;
|
|
Kite |
521c84 |
qproperty-FxColumnColor: @xsheet-FxColumn-color;
|
|
Kite |
521c84 |
qproperty-PaletteColumnColor: @xsheet-PaletteColumn-color;
|
|
Kite |
521c84 |
qproperty-MeshColumnColor: @xsheet-MeshColumn-color;
|
|
Kite |
521c84 |
qproperty-ReferenceColumnColor: @xsheet-ReferenceColumn-color;
|
|
Kite |
521c84 |
|
|
Kite |
521c84 |
qproperty-TableColor: saturate(lighten(@schematic-TableColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-ActiveCameraColor: saturate(lighten(@schematic-ActiveCameraColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-OtherCameraColor: saturate(lighten(@schematic-OtherCameraColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-GroupColor: saturate(lighten(@schematic-GroupColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-PegColor: saturate(lighten(@schematic-PegColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-SplineColor: saturate(lighten(@schematic-SplineColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-ActiveOutputColor: saturate(lighten(@schematic-ActiveOutputcolor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-OtherOutputColor: saturate(lighten(@schematic-OtherOutputcolor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-XsheetColor: saturate(lighten(@schematic-XsheetColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-NormalFxColor: saturate(lighten(@schematic-NormalFxColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-MacroFxColor: saturate(lighten(@schematic-MacroFxColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-ImageAdjustFxColor: saturate(lighten(@schematic-ImageAdjustFxColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-LayerBlendingFxColor: saturate(lighten(@schematic-LayerBlendingFxColor, @nodeLightness), @nodeSaturation);
|
|
Kite |
521c84 |
qproperty-MatteFxColor: saturate(lighten(@schematic-MatteFxColor, @nodeLightness), @nodeSaturation);
|
|
manongjohn |
d6e3cc |
|
|
manongjohn |
d6e3cc |
qproperty-SchematicPreviewButtonBgOnColor: @schematic-PreviewButtonBgOn-color;
|
|
Kite |
521c84 |
qproperty-SchematicPreviewButtonOnImage: url('@{img-url}/schematic_preview_on.svg');
|
|
manongjohn |
d6e3cc |
qproperty-SchematicPreviewButtonBgOffColor: @schematic-PreviewButtonBgOff-color;
|
|
Kite |
521c84 |
qproperty-SchematicPreviewButtonOffImage: url('@{img-url}/schematic_preview_off.svg');
|
|
manongjohn |
d6e3cc |
|
|
manongjohn |
d6e3cc |
qproperty-SchematicCamstandButtonBgOnColor: @schematic-CamstandButtonBgOn-color;
|
|
Kite |
521c84 |
qproperty-SchematicCamstandButtonOnImage: url('@{img-url}/schematic_table_on.svg');
|
|
Kite |
521c84 |
qproperty-SchematicCamstandButtonTranspImage: url('@{img-url}/schematic_table_transp.svg');
|
|
manongjohn |
d6e3cc |
qproperty-SchematicCamstandButtonBgOffColor: @schematic-CamstandButtonBgOff-color;
|
|
Kite |
521c84 |
qproperty-SchematicCamstandButtonOffImage: url('@{img-url}/schematic_table_off.svg');
|
|
Kite |
521c84 |
|
|
Kite |
521c84 |
// Link line and selected colors
|
|
Kite |
521c84 |
qproperty-SelectedBorderColor: @schematic-SelectedBorderColor;
|
|
Kite |
521c84 |
|
|
Kite |
521c84 |
qproperty-LinkColor: @schematic-LinkColor;
|
|
Kite |
521c84 |
qproperty-SelectedLinkColor: @schematic-SelectedLinkColor;
|
|
Kite |
521c84 |
qproperty-MotionPathLinkColor: @schematic-MotionPathLinkColor;
|
|
Kite |
521c84 |
qproperty-MotionPathSelectedLinkColor: @schematic-MotionPathSelectedLinkColor;
|
|
manongjohn |
d6e3cc |
}
|
|
manongjohn |
d6e3cc |
|
|
manongjohn |
d6e3cc |
/* -----------------------------------------------------------------------------
|
|
Kite |
8c766d |
Schematic Node Viewer
|
|
Kite |
8c766d |
----------------------------------------------------------------------------- */
|
|
Kite |
8c766d |
|
|
Kite |
8c766d |
#SchematicBottomFrame {
|
|
Kite |
8c766d |
background-color: @bg;
|
|
Kite |
8c766d |
border: 0;
|
|
Kite |
8c766d |
margin: 0;
|
|
Kite |
8c766d |
padding: 0;
|
|
Kite |
521c84 |
padding-left: 1;
|
|
Kite |
8c766d |
& QToolBar {
|
|
Kite |
8c766d |
&::separator:horizontal {
|
|
Kite |
8c766d |
margin: 0;
|
|
Kite |
521c84 |
margin-right: 1;
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
& QToolButton {
|
|
Kite |
521c84 |
padding: -2;
|
|
Kite |
521c84 |
margin-right: 2;
|
|
Kite |
521c84 |
margin-top: 2;
|
|
Kite |
521c84 |
margin-bottom: 2;
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
|
|
Kite |
8c766d |
#SchematicSceneViewer {
|
|
Kite |
8c766d |
background-color: @schematic-viewer-bg-color;
|
|
Kite |
8c766d |
border-bottom: 1 solid @accent;
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
|
|
Kite |
8c766d |
/* -----------------------------------------------------------------------------
|
|
Kite |
8c766d |
FX Settings
|
|
Kite |
8c766d |
----------------------------------------------------------------------------- */
|
|
Kite |
8c766d |
|
|
Kite |
521c84 |
//#FxSettingsTabBar {}
|
|
Kite |
8c766d |
|
|
Kite |
8c766d |
FxSettings {
|
|
Kite |
8c766d |
& QToolBar {
|
|
Kite |
521c84 |
border: 1 1 0 1 solid @accent;
|
|
Kite |
521c84 |
min-height: 19; // prevent shrinking
|
|
Kite |
521c84 |
padding: 3 0;
|
|
Kite |
8c766d |
border-top: 1 solid @accent;
|
|
Kite |
8c766d |
border-left: 1 solid @accent;
|
|
Kite |
521c84 |
border-right: 1 solid @accent;
|
|
Kite |
521c84 |
border-top-left-radius: 2;
|
|
Kite |
521c84 |
border-top-right-radius: 2;
|
|
Kite |
521c84 |
margin-bottom: -1;
|
|
Kite |
8c766d |
& QToolBar {
|
|
Kite |
8c766d |
border: 0;
|
|
Kite |
8c766d |
}
|
|
Kite |
521c84 |
& QToolButton {
|
|
Kite |
521c84 |
margin: 0;
|
|
Kite |
521c84 |
padding: 0;
|
|
Kite |
521c84 |
width: 22;
|
|
Kite |
521c84 |
padding-right: -2;
|
|
Kite |
521c84 |
padding-bottom: -1;
|
|
Kite |
521c84 |
}
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
|
|
Kite |
8c766d |
#FxSettingsLabel {
|
|
Kite |
8c766d |
color: @schematic-label-text-color;
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
|
|
Kite |
8c766d |
#FxSettingsHelpButton {
|
|
Kite |
8c766d |
background-color: @schematic-help-button-bg-color;
|
|
Kite |
521c84 |
border: 0;
|
|
Kite |
8c766d |
padding-top: 0;
|
|
Kite |
8c766d |
padding-bottom: 0;
|
|
Kite |
8c766d |
&:hover {
|
|
Kite |
8c766d |
background-color: @schematic-help-button-bg-color-hover;
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
}
|
|
Kite |
8c766d |
|
|
shun-iwasawa |
4c05e2 |
ChannelBar {
|
|
shun-iwasawa |
4c05e2 |
qproperty-TextColor: @text-color;
|
|
Kite |
521c84 |
}
|
|
Kite |
521c84 |
|
|
Kite |
521c84 |
/* Keyframe Button Colors
|
|
Kite |
521c84 |
----------------------------------------------------------------------------- */
|
|
Kite |
521c84 |
|
|
Kite |
521c84 |
ParamFieldKeyToggle {
|
|
Kite |
521c84 |
// no key
|
|
Kite |
521c84 |
qproperty-KeyOffColor: @keyframe-off-color;
|
|
Kite |
521c84 |
qproperty-KeyBorderOffColor: @keyframe-off-border-color;
|
|
Kite |
521c84 |
// modified
|
|
Kite |
521c84 |
qproperty-KeyModifiedColor: @keyframe-modified-color;
|
|
Kite |
521c84 |
qproperty-KeyBorderModifiedColor: @keyframe-modified-border-color;
|
|
Kite |
521c84 |
// key set / on
|
|
Kite |
521c84 |
qproperty-KeyOnColor: @keyframe-total-color;
|
|
Kite |
521c84 |
qproperty-KeyBorderOnColor: @keyframe-total-border-color;
|
|
Kite |
521c84 |
// inbetween
|
|
Kite |
521c84 |
qproperty-KeyInbetweenColor: @keyframe-inbetween-color;
|
|
Kite |
521c84 |
qproperty-KeyBorderInbetweenColor: @keyframe-inbetween-border-color;
|
|
Kite |
521c84 |
// highlight
|
|
Kite |
521c84 |
qproperty-KeyHighlightColor: @keyframe-highlight-color;
|
|
Kite |
521c84 |
qproperty-KeyBorderHighlightColor: @keyframe-highlight-border-color;
|
|
Kite |
521c84 |
}
|