mirror of
https://github.com/nasa/openmct.git
synced 2025-02-21 17:57:04 +00:00
[Frontend] Converting tree items and labels to flex-box
open #431 In-progress; TO-DO: need to fix mobile styles!
This commit is contained in:
parent
a98ab958c9
commit
65a1d7495d
@ -26,8 +26,8 @@
|
|||||||
|
|
||||||
@mixin spinner($b: 5px, $c: $colorAlt1) {
|
@mixin spinner($b: 5px, $c: $colorAlt1) {
|
||||||
@include keyframes(rotateCentered) {
|
@include keyframes(rotateCentered) {
|
||||||
0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
0% { @include transform(translateX(-50%) translateY(-50%) rotate(0deg)); }
|
||||||
100% { transform: translateX(-50%) translateY(-50%) rotate(359deg); }
|
100% { @include transform(translateX(-50%) translateY(-50%) rotate(359deg)); }
|
||||||
}
|
}
|
||||||
@include animation-name(rotateCentered);
|
@include animation-name(rotateCentered);
|
||||||
@include animation-duration(0.5s);
|
@include animation-duration(0.5s);
|
||||||
|
@ -38,20 +38,33 @@ ul.tree {
|
|||||||
@include box-sizing(border-box);
|
@include box-sizing(border-box);
|
||||||
@include border-radius($basicCr);
|
@include border-radius($basicCr);
|
||||||
@include single-transition(background-color, 0.25s);
|
@include single-transition(background-color, 0.25s);
|
||||||
display: block;
|
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
height: $menuLineH;
|
height: $menuLineH;
|
||||||
line-height: $menuLineH;
|
line-height: $menuLineH;
|
||||||
margin-bottom: $interiorMarginSm;
|
margin-bottom: $interiorMarginSm;
|
||||||
|
padding: 0 $interiorMarginSm;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.view-control {
|
.view-control {
|
||||||
|
@extend .flex-elem;
|
||||||
color: $colorItemTreeVC;
|
color: $colorItemTreeVC;
|
||||||
display: inline-block;
|
//display: inline-block;
|
||||||
margin-left: $interiorMargin;
|
margin-right: $interiorMargin;
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
width: $treeVCW;
|
width: $treeVCW;
|
||||||
$runningItemW: $interiorMargin + $treeVCW;
|
&.has-children {
|
||||||
|
&:before {
|
||||||
|
//@include trans-prop-nice(rotate);
|
||||||
|
content: ">";
|
||||||
|
//position: absolute;
|
||||||
|
//top: 50%;
|
||||||
|
//left: 50%;
|
||||||
|
}
|
||||||
|
&.expanded:before {
|
||||||
|
//@include transform(translateX(-50%) translateY(-50%) rotate(90deg));
|
||||||
|
content: "v";
|
||||||
|
}
|
||||||
|
}
|
||||||
@include desktop {
|
@include desktop {
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $colorItemTreeVCHover !important;
|
color: $colorItemTreeVCHover !important;
|
||||||
@ -60,29 +73,27 @@ ul.tree {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.t-object-label {
|
.t-object-label {
|
||||||
display: block;
|
//display: block;
|
||||||
@include absPosDefault();
|
//@include absPosDefault();
|
||||||
line-height: $menuLineH;
|
line-height: $menuLineH;
|
||||||
|
|
||||||
.t-item-icon {
|
.t-item-icon {
|
||||||
@include txtShdwSubtle($shdwItemTreeIcon);
|
@include txtShdwSubtle($shdwItemTreeIcon);
|
||||||
font-size: $treeTypeIconH;
|
font-size: $treeTypeIconH;
|
||||||
color: $colorItemTreeIcon;
|
color: $colorItemTreeIcon;
|
||||||
position: absolute;
|
//position: absolute;
|
||||||
left: $interiorMargin;
|
//left: $interiorMargin;
|
||||||
top: 50%;
|
//top: 50%;
|
||||||
width: $treeTypeIconH;
|
width: $treeTypeIconH;
|
||||||
@include transform(translateY(-50%));
|
//@include transform(translateY(-50%));
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-label,
|
.title-label,
|
||||||
.t-title-label {
|
.t-title-label {
|
||||||
@include absPosDefault();
|
@include ellipsize();
|
||||||
display: block;
|
//@include absPosDefault();
|
||||||
left: $runningItemW + ($interiorMargin * 3);
|
//display: block;
|
||||||
overflow: hidden;
|
//left: $runningItemW + ($interiorMargin * 3);
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,13 +140,12 @@ ul.tree {
|
|||||||
|
|
||||||
.tree-item {
|
.tree-item {
|
||||||
mct-representation {
|
mct-representation {
|
||||||
.t-object-label {
|
//.t-object-label {
|
||||||
left: $interiorMargin + $treeVCW;
|
// left: $interiorMargin + $treeVCW;
|
||||||
}
|
//}
|
||||||
&.s-status-pending {
|
&.s-status-pending {
|
||||||
.t-object-label {
|
.t-object-label {
|
||||||
&:before {
|
&:before {
|
||||||
@include tItemIcon();
|
|
||||||
@include spinner(0.25em, $colorItemTreeIcon);
|
@include spinner(0.25em, $colorItemTreeIcon);
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
this source code distribution or the Licensing information page available
|
this source code distribution or the Licensing information page available
|
||||||
at runtime from the About dialog for additional information.
|
at runtime from the About dialog for additional information.
|
||||||
-->
|
-->
|
||||||
<span class="t-object-label">
|
<span class="t-object-label l-flex-row flex-elem grows">
|
||||||
<span class="t-item-icon" ng-class="{ 'l-icon-link':location.isLink() }">
|
<span class="t-item-icon flex-elem" ng-class="{ 'l-icon-link':location.isLink() }">
|
||||||
<span class="t-item-icon-glyph">{{type.getGlyph()}}</span>
|
<span class="t-item-icon-glyph">{{type.getGlyph()}}</span>
|
||||||
</span>
|
</span>
|
||||||
<span class='t-title-label'>{{model.name}}</span>
|
<span class='t-title-label flex-elem grows'>{{model.name}}</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -22,21 +22,20 @@
|
|||||||
<span ng-controller="ToggleController as toggle">
|
<span ng-controller="ToggleController as toggle">
|
||||||
<span ng-controller="TreeNodeController as treeNode">
|
<span ng-controller="TreeNodeController as treeNode">
|
||||||
<span
|
<span
|
||||||
class="tree-item menus-to-left"
|
class="tree-item l-flex-row menus-to-left"
|
||||||
ng-class="{selected: treeNode.isSelected()}"
|
ng-class="{selected: treeNode.isSelected()}"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
mct-device="desktop"
|
mct-device="desktop"
|
||||||
class='ui-symbol view-control'
|
class='ui-symbol view-control flex-elem'
|
||||||
|
ng-class="{ 'has-children': model.composition !== undefined, expanded: toggle.isActive() }"
|
||||||
ng-click="toggle.toggle(); treeNode.trackExpansion()"
|
ng-click="toggle.toggle(); treeNode.trackExpansion()"
|
||||||
ng-if="model.composition !== undefined"
|
|
||||||
>
|
>
|
||||||
{{toggle.isActive() ? "v" : ">"}}
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<mct-representation
|
<mct-representation
|
||||||
mct-device="desktop"
|
mct-device="desktop"
|
||||||
class="mobile-hide"
|
class="mobile-hide l-flex-row flex-elem grows"
|
||||||
key="'label'"
|
key="'label'"
|
||||||
mct-object="domainObject"
|
mct-object="domainObject"
|
||||||
ng-click="treeNode.select()"
|
ng-click="treeNode.select()"
|
||||||
|
@ -527,23 +527,47 @@ mct-container {
|
|||||||
-webkit-flex-wrap: nowrap;
|
-webkit-flex-wrap: nowrap;
|
||||||
flex-wrap: nowrap; }
|
flex-wrap: nowrap; }
|
||||||
/* line 99, ../../../../general/res/sass/_archetypes.scss */
|
/* line 99, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem,
|
.l-flex-row .flex-elem, .l-flex-row .tree-item .view-control, .tree-item .l-flex-row .view-control,
|
||||||
.l-flex-col .flex-elem {
|
.l-flex-row .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-row .view-control,
|
||||||
|
.l-flex-col .flex-elem,
|
||||||
|
.l-flex-col .tree-item .view-control,
|
||||||
|
.tree-item .l-flex-col .view-control,
|
||||||
|
.l-flex-col .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-col .view-control {
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
position: relative; }
|
position: relative; }
|
||||||
/* line 102, ../../../../general/res/sass/_archetypes.scss */
|
/* line 102, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem:not(.grows),
|
.l-flex-row .flex-elem:not(.grows), .l-flex-row .tree-item .view-control:not(.grows), .tree-item .l-flex-row .view-control:not(.grows),
|
||||||
.l-flex-col .flex-elem:not(.grows) {
|
.l-flex-row .search-result-item .view-control:not(.grows),
|
||||||
|
.search-result-item .l-flex-row .view-control:not(.grows),
|
||||||
|
.l-flex-col .flex-elem:not(.grows),
|
||||||
|
.l-flex-col .tree-item .view-control:not(.grows),
|
||||||
|
.tree-item .l-flex-col .view-control:not(.grows),
|
||||||
|
.l-flex-col .search-result-item .view-control:not(.grows),
|
||||||
|
.search-result-item .l-flex-col .view-control:not(.grows) {
|
||||||
-webkit-flex: 0 0 auto;
|
-webkit-flex: 0 0 auto;
|
||||||
flex: 0 0 auto; }
|
flex: 0 0 auto; }
|
||||||
/* line 104, ../../../../general/res/sass/_archetypes.scss */
|
/* line 104, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem:not(.grows).flex-can-shrink,
|
.l-flex-row .flex-elem:not(.grows).flex-can-shrink, .l-flex-row .tree-item .view-control:not(.grows).flex-can-shrink, .tree-item .l-flex-row .view-control:not(.grows).flex-can-shrink,
|
||||||
.l-flex-col .flex-elem:not(.grows).flex-can-shrink {
|
.l-flex-row .search-result-item .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.search-result-item .l-flex-row .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.l-flex-col .flex-elem:not(.grows).flex-can-shrink,
|
||||||
|
.l-flex-col .tree-item .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.tree-item .l-flex-col .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.l-flex-col .search-result-item .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.search-result-item .l-flex-col .view-control:not(.grows).flex-can-shrink {
|
||||||
-webkit-flex: 0 1 auto;
|
-webkit-flex: 0 1 auto;
|
||||||
flex: 0 1 auto; }
|
flex: 0 1 auto; }
|
||||||
/* line 108, ../../../../general/res/sass/_archetypes.scss */
|
/* line 108, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem.grows,
|
.l-flex-row .flex-elem.grows, .l-flex-row .tree-item .grows.view-control, .tree-item .l-flex-row .grows.view-control,
|
||||||
.l-flex-col .flex-elem.grows {
|
.l-flex-row .search-result-item .grows.view-control,
|
||||||
|
.search-result-item .l-flex-row .grows.view-control,
|
||||||
|
.l-flex-col .flex-elem.grows,
|
||||||
|
.l-flex-col .tree-item .grows.view-control,
|
||||||
|
.tree-item .l-flex-col .grows.view-control,
|
||||||
|
.l-flex-col .search-result-item .grows.view-control,
|
||||||
|
.search-result-item .l-flex-col .grows.view-control {
|
||||||
-webkit-flex: 1 1 auto;
|
-webkit-flex: 1 1 auto;
|
||||||
flex: 1 1 auto; }
|
flex: 1 1 auto; }
|
||||||
/* line 112, ../../../../general/res/sass/_archetypes.scss */
|
/* line 112, ../../../../general/res/sass/_archetypes.scss */
|
||||||
@ -562,11 +586,14 @@ mct-container {
|
|||||||
-webkit-flex-direction: row;
|
-webkit-flex-direction: row;
|
||||||
flex-direction: row; }
|
flex-direction: row; }
|
||||||
/* line 123, ../../../../general/res/sass/_archetypes.scss */
|
/* line 123, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row.flex-elem {
|
.l-flex-row.flex-elem, .tree-item .l-flex-row.view-control,
|
||||||
|
.search-result-item .l-flex-row.view-control {
|
||||||
-webkit-flex: 1 1 auto;
|
-webkit-flex: 1 1 auto;
|
||||||
flex: 1 1 auto; }
|
flex: 1 1 auto; }
|
||||||
/* line 124, ../../../../general/res/sass/_archetypes.scss */
|
/* line 124, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem {
|
.l-flex-row .flex-elem, .l-flex-row .tree-item .view-control, .tree-item .l-flex-row .view-control,
|
||||||
|
.l-flex-row .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-row .view-control {
|
||||||
height: inherit;
|
height: inherit;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
min-width: 0; }
|
min-width: 0; }
|
||||||
@ -580,10 +607,14 @@ mct-container {
|
|||||||
-webkit-flex-direction: column;
|
-webkit-flex-direction: column;
|
||||||
flex-direction: column; }
|
flex-direction: column; }
|
||||||
/* line 134, ../../../../general/res/sass/_archetypes.scss */
|
/* line 134, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-col .flex-elem {
|
.l-flex-col .flex-elem, .l-flex-col .tree-item .view-control, .tree-item .l-flex-col .view-control,
|
||||||
|
.l-flex-col .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-col .view-control {
|
||||||
min-height: 0; }
|
min-height: 0; }
|
||||||
/* line 136, ../../../../general/res/sass/_archetypes.scss */
|
/* line 136, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-col .flex-elem.holder:not(:last-child) {
|
.l-flex-col .flex-elem.holder:not(:last-child), .l-flex-col .tree-item .holder.view-control:not(:last-child), .tree-item .l-flex-col .holder.view-control:not(:last-child),
|
||||||
|
.l-flex-col .search-result-item .holder.view-control:not(:last-child),
|
||||||
|
.search-result-item .l-flex-col .holder.view-control:not(:last-child) {
|
||||||
margin-bottom: 10px; }
|
margin-bottom: 10px; }
|
||||||
/* line 138, ../../../../general/res/sass/_archetypes.scss */
|
/* line 138, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-col .flex-container {
|
.l-flex-col .flex-container {
|
||||||
@ -1388,18 +1419,28 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before {
|
|||||||
z-index: 10; }
|
z-index: 10; }
|
||||||
@-moz-keyframes rotateCentered {
|
@-moz-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@-webkit-keyframes rotateCentered {
|
@-webkit-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@keyframes rotateCentered {
|
@keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
/* line 138, ../../../../general/res/sass/helpers/_wait-spinner.scss */
|
/* line 138, ../../../../general/res/sass/helpers/_wait-spinner.scss */
|
||||||
.loading:after {
|
.loading:after {
|
||||||
@ -5599,7 +5640,7 @@ span.req {
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/* line 35, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 23, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
ul.tree {
|
ul.tree {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -5612,15 +5653,15 @@ ul.tree {
|
|||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0; }
|
padding: 0; }
|
||||||
/* line 38, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 26, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
ul.tree li {
|
ul.tree li {
|
||||||
display: block;
|
display: block;
|
||||||
position: relative; }
|
position: relative; }
|
||||||
/* line 42, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 30, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
ul.tree ul.tree {
|
ul.tree ul.tree {
|
||||||
margin-left: 15px; }
|
margin-left: 15px; }
|
||||||
|
|
||||||
/* line 47, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 35, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item,
|
.tree-item,
|
||||||
.search-result-item {
|
.search-result-item {
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
@ -5633,126 +5674,93 @@ ul.tree {
|
|||||||
-o-transition: background-color 0.25s;
|
-o-transition: background-color 0.25s;
|
||||||
-webkit-transition: background-color 0.25s;
|
-webkit-transition: background-color 0.25s;
|
||||||
transition: background-color 0.25s;
|
transition: background-color 0.25s;
|
||||||
display: block;
|
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
|
padding: 0 3px;
|
||||||
position: relative; }
|
position: relative; }
|
||||||
/* line 60, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 48, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .view-control,
|
.tree-item .view-control,
|
||||||
.search-result-item .view-control {
|
.search-result-item .view-control {
|
||||||
color: rgba(255, 255, 255, 0.3);
|
color: rgba(255, 255, 255, 0.3);
|
||||||
display: inline-block;
|
margin-right: 5px;
|
||||||
margin-left: 5px;
|
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
width: 10px; }
|
width: 10px; }
|
||||||
|
/* line 56, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
|
.tree-item .view-control.has-children:before,
|
||||||
|
.search-result-item .view-control.has-children:before {
|
||||||
|
content: ">"; }
|
||||||
|
/* line 63, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
|
.tree-item .view-control.has-children.expanded:before,
|
||||||
|
.search-result-item .view-control.has-children.expanded:before {
|
||||||
|
content: "v"; }
|
||||||
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
||||||
/* line 68, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 69, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .view-control:hover,
|
.tree-item .view-control:hover,
|
||||||
.search-result-item .view-control:hover {
|
.search-result-item .view-control:hover {
|
||||||
color: #ffc700 !important; } }
|
color: #ffc700 !important; } }
|
||||||
/* line 74, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 75, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .t-object-label,
|
.tree-item .t-object-label,
|
||||||
.search-result-item .t-object-label {
|
.search-result-item .t-object-label {
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
right: 0px;
|
|
||||||
bottom: 0px;
|
|
||||||
left: 0px;
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
line-height: 1.5rem; }
|
line-height: 1.5rem; }
|
||||||
/* line 79, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 80, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .t-object-label .t-item-icon,
|
.tree-item .t-object-label .t-item-icon,
|
||||||
.search-result-item .t-object-label .t-item-icon {
|
.search-result-item .t-object-label .t-item-icon {
|
||||||
text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
|
text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
color: #0099cc;
|
color: #0099cc;
|
||||||
position: absolute;
|
width: 1.4em; }
|
||||||
left: 5px;
|
/* line 91, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
top: 50%;
|
|
||||||
width: 1.4em;
|
|
||||||
-moz-transform: translateY(-50%);
|
|
||||||
-ms-transform: translateY(-50%);
|
|
||||||
-webkit-transform: translateY(-50%);
|
|
||||||
transform: translateY(-50%); }
|
|
||||||
/* line 83, ../../../../general/res/sass/tree/_tree.scss */
|
|
||||||
.tree-item .t-object-label .title-label,
|
.tree-item .t-object-label .title-label,
|
||||||
.tree-item .t-object-label .t-title-label,
|
.tree-item .t-object-label .t-title-label,
|
||||||
.search-result-item .t-object-label .title-label,
|
.search-result-item .t-object-label .title-label,
|
||||||
.search-result-item .t-object-label .t-title-label {
|
.search-result-item .t-object-label .t-title-label {
|
||||||
overflow: hidden;
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
right: 0px;
|
|
||||||
bottom: 0px;
|
|
||||||
left: 0px;
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
display: block;
|
|
||||||
left: 30px;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap; }
|
white-space: nowrap; }
|
||||||
/* line 94, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 100, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item.selected,
|
.tree-item.selected,
|
||||||
.search-result-item.selected {
|
.search-result-item.selected {
|
||||||
background: #006080;
|
background: #006080;
|
||||||
color: #cccccc; }
|
color: #cccccc; }
|
||||||
/* line 97, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 103, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item.selected .view-control,
|
.tree-item.selected .view-control,
|
||||||
.search-result-item.selected .view-control {
|
.search-result-item.selected .view-control {
|
||||||
color: rgba(255, 255, 255, 0.3); }
|
color: rgba(255, 255, 255, 0.3); }
|
||||||
/* line 100, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 106, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item.selected .t-object-label .t-item-icon,
|
.tree-item.selected .t-object-label .t-item-icon,
|
||||||
.search-result-item.selected .t-object-label .t-item-icon {
|
.search-result-item.selected .t-object-label .t-item-icon {
|
||||||
color: #cccccc; }
|
color: #cccccc; }
|
||||||
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
||||||
/* line 108, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 114, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item:not(.selected):hover,
|
.tree-item:not(.selected):hover,
|
||||||
.search-result-item:not(.selected):hover {
|
.search-result-item:not(.selected):hover {
|
||||||
background: rgba(153, 153, 153, 0.1);
|
background: rgba(153, 153, 153, 0.1);
|
||||||
color: #cccccc; }
|
color: #cccccc; }
|
||||||
/* line 111, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 117, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item:not(.selected):hover .t-item-icon,
|
.tree-item:not(.selected):hover .t-item-icon,
|
||||||
.search-result-item:not(.selected):hover .t-item-icon {
|
.search-result-item:not(.selected):hover .t-item-icon {
|
||||||
color: #33ccff; } }
|
color: #33ccff; } }
|
||||||
/* line 118, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 124, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item:not(.loading),
|
.tree-item:not(.loading),
|
||||||
.search-result-item:not(.loading) {
|
.search-result-item:not(.loading) {
|
||||||
cursor: pointer; }
|
cursor: pointer; }
|
||||||
/* line 122, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 128, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .context-trigger,
|
.tree-item .context-trigger,
|
||||||
.search-result-item .context-trigger {
|
.search-result-item .context-trigger {
|
||||||
top: -1px;
|
top: -1px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 3px; }
|
right: 3px; }
|
||||||
/* line 127, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 133, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .context-trigger .invoke-menu,
|
.tree-item .context-trigger .invoke-menu,
|
||||||
.search-result-item .context-trigger .invoke-menu {
|
.search-result-item .context-trigger .invoke-menu {
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
height: 0.9rem;
|
height: 0.9rem;
|
||||||
line-height: 0.9rem; }
|
line-height: 0.9rem; }
|
||||||
|
|
||||||
/* line 137, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 148, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item mct-representation .t-object-label {
|
|
||||||
left: 15px; }
|
|
||||||
/* line 142, ../../../../general/res/sass/tree/_tree.scss */
|
|
||||||
.tree-item mct-representation.s-status-pending .t-object-label:before {
|
.tree-item mct-representation.s-status-pending .t-object-label:before {
|
||||||
text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
|
|
||||||
font-size: 1.4em;
|
|
||||||
color: #0099cc;
|
|
||||||
position: absolute;
|
|
||||||
left: 5px;
|
|
||||||
top: 50%;
|
|
||||||
width: 1.4em;
|
|
||||||
-moz-transform: translateY(-50%);
|
|
||||||
-ms-transform: translateY(-50%);
|
|
||||||
-webkit-transform: translateY(-50%);
|
|
||||||
transform: translateY(-50%);
|
|
||||||
-moz-animation-name: rotateCentered;
|
-moz-animation-name: rotateCentered;
|
||||||
-webkit-animation-name: rotateCentered;
|
-webkit-animation-name: rotateCentered;
|
||||||
animation-name: rotateCentered;
|
animation-name: rotateCentered;
|
||||||
@ -5765,30 +5773,40 @@ ul.tree {
|
|||||||
-moz-animation-timing-function: linear;
|
-moz-animation-timing-function: linear;
|
||||||
-webkit-animation-timing-function: linear;
|
-webkit-animation-timing-function: linear;
|
||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
border-color: rgba(0, 0, 255, 0.25);
|
border-color: rgba(0, 153, 204, 0.25);
|
||||||
border-top-color: blue;
|
border-top-color: #0099cc;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 2px;
|
border-width: 0.25em;
|
||||||
-moz-border-radius: 100%;
|
-moz-border-radius: 100%;
|
||||||
-webkit-border-radius: 100%;
|
-webkit-border-radius: 100%;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
content: ""; }
|
content: ""; }
|
||||||
@-moz-keyframes rotateCentered {
|
@-moz-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@-webkit-keyframes rotateCentered {
|
@-webkit-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@keyframes rotateCentered {
|
@keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
/* line 147, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 152, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item mct-representation.s-status-pending .t-object-label .t-item-icon .t-item-icon-glyph {
|
.tree-item mct-representation.s-status-pending .t-object-label .t-item-icon .t-item-icon-glyph {
|
||||||
display: none; }
|
display: none; }
|
||||||
|
|
||||||
|
@ -527,23 +527,47 @@ mct-container {
|
|||||||
-webkit-flex-wrap: nowrap;
|
-webkit-flex-wrap: nowrap;
|
||||||
flex-wrap: nowrap; }
|
flex-wrap: nowrap; }
|
||||||
/* line 99, ../../../../general/res/sass/_archetypes.scss */
|
/* line 99, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem,
|
.l-flex-row .flex-elem, .l-flex-row .tree-item .view-control, .tree-item .l-flex-row .view-control,
|
||||||
.l-flex-col .flex-elem {
|
.l-flex-row .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-row .view-control,
|
||||||
|
.l-flex-col .flex-elem,
|
||||||
|
.l-flex-col .tree-item .view-control,
|
||||||
|
.tree-item .l-flex-col .view-control,
|
||||||
|
.l-flex-col .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-col .view-control {
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
position: relative; }
|
position: relative; }
|
||||||
/* line 102, ../../../../general/res/sass/_archetypes.scss */
|
/* line 102, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem:not(.grows),
|
.l-flex-row .flex-elem:not(.grows), .l-flex-row .tree-item .view-control:not(.grows), .tree-item .l-flex-row .view-control:not(.grows),
|
||||||
.l-flex-col .flex-elem:not(.grows) {
|
.l-flex-row .search-result-item .view-control:not(.grows),
|
||||||
|
.search-result-item .l-flex-row .view-control:not(.grows),
|
||||||
|
.l-flex-col .flex-elem:not(.grows),
|
||||||
|
.l-flex-col .tree-item .view-control:not(.grows),
|
||||||
|
.tree-item .l-flex-col .view-control:not(.grows),
|
||||||
|
.l-flex-col .search-result-item .view-control:not(.grows),
|
||||||
|
.search-result-item .l-flex-col .view-control:not(.grows) {
|
||||||
-webkit-flex: 0 0 auto;
|
-webkit-flex: 0 0 auto;
|
||||||
flex: 0 0 auto; }
|
flex: 0 0 auto; }
|
||||||
/* line 104, ../../../../general/res/sass/_archetypes.scss */
|
/* line 104, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem:not(.grows).flex-can-shrink,
|
.l-flex-row .flex-elem:not(.grows).flex-can-shrink, .l-flex-row .tree-item .view-control:not(.grows).flex-can-shrink, .tree-item .l-flex-row .view-control:not(.grows).flex-can-shrink,
|
||||||
.l-flex-col .flex-elem:not(.grows).flex-can-shrink {
|
.l-flex-row .search-result-item .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.search-result-item .l-flex-row .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.l-flex-col .flex-elem:not(.grows).flex-can-shrink,
|
||||||
|
.l-flex-col .tree-item .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.tree-item .l-flex-col .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.l-flex-col .search-result-item .view-control:not(.grows).flex-can-shrink,
|
||||||
|
.search-result-item .l-flex-col .view-control:not(.grows).flex-can-shrink {
|
||||||
-webkit-flex: 0 1 auto;
|
-webkit-flex: 0 1 auto;
|
||||||
flex: 0 1 auto; }
|
flex: 0 1 auto; }
|
||||||
/* line 108, ../../../../general/res/sass/_archetypes.scss */
|
/* line 108, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem.grows,
|
.l-flex-row .flex-elem.grows, .l-flex-row .tree-item .grows.view-control, .tree-item .l-flex-row .grows.view-control,
|
||||||
.l-flex-col .flex-elem.grows {
|
.l-flex-row .search-result-item .grows.view-control,
|
||||||
|
.search-result-item .l-flex-row .grows.view-control,
|
||||||
|
.l-flex-col .flex-elem.grows,
|
||||||
|
.l-flex-col .tree-item .grows.view-control,
|
||||||
|
.tree-item .l-flex-col .grows.view-control,
|
||||||
|
.l-flex-col .search-result-item .grows.view-control,
|
||||||
|
.search-result-item .l-flex-col .grows.view-control {
|
||||||
-webkit-flex: 1 1 auto;
|
-webkit-flex: 1 1 auto;
|
||||||
flex: 1 1 auto; }
|
flex: 1 1 auto; }
|
||||||
/* line 112, ../../../../general/res/sass/_archetypes.scss */
|
/* line 112, ../../../../general/res/sass/_archetypes.scss */
|
||||||
@ -562,11 +586,14 @@ mct-container {
|
|||||||
-webkit-flex-direction: row;
|
-webkit-flex-direction: row;
|
||||||
flex-direction: row; }
|
flex-direction: row; }
|
||||||
/* line 123, ../../../../general/res/sass/_archetypes.scss */
|
/* line 123, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row.flex-elem {
|
.l-flex-row.flex-elem, .tree-item .l-flex-row.view-control,
|
||||||
|
.search-result-item .l-flex-row.view-control {
|
||||||
-webkit-flex: 1 1 auto;
|
-webkit-flex: 1 1 auto;
|
||||||
flex: 1 1 auto; }
|
flex: 1 1 auto; }
|
||||||
/* line 124, ../../../../general/res/sass/_archetypes.scss */
|
/* line 124, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-row .flex-elem {
|
.l-flex-row .flex-elem, .l-flex-row .tree-item .view-control, .tree-item .l-flex-row .view-control,
|
||||||
|
.l-flex-row .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-row .view-control {
|
||||||
height: inherit;
|
height: inherit;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
min-width: 0; }
|
min-width: 0; }
|
||||||
@ -580,10 +607,14 @@ mct-container {
|
|||||||
-webkit-flex-direction: column;
|
-webkit-flex-direction: column;
|
||||||
flex-direction: column; }
|
flex-direction: column; }
|
||||||
/* line 134, ../../../../general/res/sass/_archetypes.scss */
|
/* line 134, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-col .flex-elem {
|
.l-flex-col .flex-elem, .l-flex-col .tree-item .view-control, .tree-item .l-flex-col .view-control,
|
||||||
|
.l-flex-col .search-result-item .view-control,
|
||||||
|
.search-result-item .l-flex-col .view-control {
|
||||||
min-height: 0; }
|
min-height: 0; }
|
||||||
/* line 136, ../../../../general/res/sass/_archetypes.scss */
|
/* line 136, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-col .flex-elem.holder:not(:last-child) {
|
.l-flex-col .flex-elem.holder:not(:last-child), .l-flex-col .tree-item .holder.view-control:not(:last-child), .tree-item .l-flex-col .holder.view-control:not(:last-child),
|
||||||
|
.l-flex-col .search-result-item .holder.view-control:not(:last-child),
|
||||||
|
.search-result-item .l-flex-col .holder.view-control:not(:last-child) {
|
||||||
margin-bottom: 10px; }
|
margin-bottom: 10px; }
|
||||||
/* line 138, ../../../../general/res/sass/_archetypes.scss */
|
/* line 138, ../../../../general/res/sass/_archetypes.scss */
|
||||||
.l-flex-col .flex-container {
|
.l-flex-col .flex-container {
|
||||||
@ -1369,18 +1400,28 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before {
|
|||||||
z-index: 10; }
|
z-index: 10; }
|
||||||
@-moz-keyframes rotateCentered {
|
@-moz-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@-webkit-keyframes rotateCentered {
|
@-webkit-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@keyframes rotateCentered {
|
@keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
/* line 138, ../../../../general/res/sass/helpers/_wait-spinner.scss */
|
/* line 138, ../../../../general/res/sass/helpers/_wait-spinner.scss */
|
||||||
.loading:after {
|
.loading:after {
|
||||||
@ -5503,7 +5544,7 @@ span.req {
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/* line 35, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 23, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
ul.tree {
|
ul.tree {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -5516,15 +5557,15 @@ ul.tree {
|
|||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0; }
|
padding: 0; }
|
||||||
/* line 38, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 26, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
ul.tree li {
|
ul.tree li {
|
||||||
display: block;
|
display: block;
|
||||||
position: relative; }
|
position: relative; }
|
||||||
/* line 42, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 30, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
ul.tree ul.tree {
|
ul.tree ul.tree {
|
||||||
margin-left: 15px; }
|
margin-left: 15px; }
|
||||||
|
|
||||||
/* line 47, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 35, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item,
|
.tree-item,
|
||||||
.search-result-item {
|
.search-result-item {
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
@ -5537,124 +5578,92 @@ ul.tree {
|
|||||||
-o-transition: background-color 0.25s;
|
-o-transition: background-color 0.25s;
|
||||||
-webkit-transition: background-color 0.25s;
|
-webkit-transition: background-color 0.25s;
|
||||||
transition: background-color 0.25s;
|
transition: background-color 0.25s;
|
||||||
display: block;
|
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
|
padding: 0 3px;
|
||||||
position: relative; }
|
position: relative; }
|
||||||
/* line 60, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 48, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .view-control,
|
.tree-item .view-control,
|
||||||
.search-result-item .view-control {
|
.search-result-item .view-control {
|
||||||
color: #666;
|
color: #666;
|
||||||
display: inline-block;
|
margin-right: 5px;
|
||||||
margin-left: 5px;
|
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
width: 10px; }
|
width: 10px; }
|
||||||
|
/* line 56, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
|
.tree-item .view-control.has-children:before,
|
||||||
|
.search-result-item .view-control.has-children:before {
|
||||||
|
content: ">"; }
|
||||||
|
/* line 63, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
|
.tree-item .view-control.has-children.expanded:before,
|
||||||
|
.search-result-item .view-control.has-children.expanded:before {
|
||||||
|
content: "v"; }
|
||||||
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
||||||
/* line 68, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 69, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .view-control:hover,
|
.tree-item .view-control:hover,
|
||||||
.search-result-item .view-control:hover {
|
.search-result-item .view-control:hover {
|
||||||
color: #0099cc !important; } }
|
color: #0099cc !important; } }
|
||||||
/* line 74, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 75, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .t-object-label,
|
.tree-item .t-object-label,
|
||||||
.search-result-item .t-object-label {
|
.search-result-item .t-object-label {
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
right: 0px;
|
|
||||||
bottom: 0px;
|
|
||||||
left: 0px;
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
line-height: 1.5rem; }
|
line-height: 1.5rem; }
|
||||||
/* line 79, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 80, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .t-object-label .t-item-icon,
|
.tree-item .t-object-label .t-item-icon,
|
||||||
.search-result-item .t-object-label .t-item-icon {
|
.search-result-item .t-object-label .t-item-icon {
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
color: #0099cc;
|
color: #0099cc;
|
||||||
position: absolute;
|
width: 1.4em; }
|
||||||
left: 5px;
|
/* line 91, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
top: 50%;
|
|
||||||
width: 1.4em;
|
|
||||||
-moz-transform: translateY(-50%);
|
|
||||||
-ms-transform: translateY(-50%);
|
|
||||||
-webkit-transform: translateY(-50%);
|
|
||||||
transform: translateY(-50%); }
|
|
||||||
/* line 83, ../../../../general/res/sass/tree/_tree.scss */
|
|
||||||
.tree-item .t-object-label .title-label,
|
.tree-item .t-object-label .title-label,
|
||||||
.tree-item .t-object-label .t-title-label,
|
.tree-item .t-object-label .t-title-label,
|
||||||
.search-result-item .t-object-label .title-label,
|
.search-result-item .t-object-label .title-label,
|
||||||
.search-result-item .t-object-label .t-title-label {
|
.search-result-item .t-object-label .t-title-label {
|
||||||
overflow: hidden;
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
right: 0px;
|
|
||||||
bottom: 0px;
|
|
||||||
left: 0px;
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
display: block;
|
|
||||||
left: 30px;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap; }
|
white-space: nowrap; }
|
||||||
/* line 94, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 100, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item.selected,
|
.tree-item.selected,
|
||||||
.search-result-item.selected {
|
.search-result-item.selected {
|
||||||
background: #1ac6ff;
|
background: #1ac6ff;
|
||||||
color: #fcfcfc; }
|
color: #fcfcfc; }
|
||||||
/* line 97, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 103, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item.selected .view-control,
|
.tree-item.selected .view-control,
|
||||||
.search-result-item.selected .view-control {
|
.search-result-item.selected .view-control {
|
||||||
color: #fcfcfc; }
|
color: #fcfcfc; }
|
||||||
/* line 100, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 106, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item.selected .t-object-label .t-item-icon,
|
.tree-item.selected .t-object-label .t-item-icon,
|
||||||
.search-result-item.selected .t-object-label .t-item-icon {
|
.search-result-item.selected .t-object-label .t-item-icon {
|
||||||
color: #fcfcfc; }
|
color: #fcfcfc; }
|
||||||
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
@media only screen and (min-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 1) {
|
||||||
/* line 108, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 114, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item:not(.selected):hover,
|
.tree-item:not(.selected):hover,
|
||||||
.search-result-item:not(.selected):hover {
|
.search-result-item:not(.selected):hover {
|
||||||
background: rgba(102, 102, 102, 0.1);
|
background: rgba(102, 102, 102, 0.1);
|
||||||
color: #333333; }
|
color: #333333; }
|
||||||
/* line 111, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 117, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item:not(.selected):hover .t-item-icon,
|
.tree-item:not(.selected):hover .t-item-icon,
|
||||||
.search-result-item:not(.selected):hover .t-item-icon {
|
.search-result-item:not(.selected):hover .t-item-icon {
|
||||||
color: #0099cc; } }
|
color: #0099cc; } }
|
||||||
/* line 118, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 124, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item:not(.loading),
|
.tree-item:not(.loading),
|
||||||
.search-result-item:not(.loading) {
|
.search-result-item:not(.loading) {
|
||||||
cursor: pointer; }
|
cursor: pointer; }
|
||||||
/* line 122, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 128, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .context-trigger,
|
.tree-item .context-trigger,
|
||||||
.search-result-item .context-trigger {
|
.search-result-item .context-trigger {
|
||||||
top: -1px;
|
top: -1px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 3px; }
|
right: 3px; }
|
||||||
/* line 127, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 133, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item .context-trigger .invoke-menu,
|
.tree-item .context-trigger .invoke-menu,
|
||||||
.search-result-item .context-trigger .invoke-menu {
|
.search-result-item .context-trigger .invoke-menu {
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
height: 0.9rem;
|
height: 0.9rem;
|
||||||
line-height: 0.9rem; }
|
line-height: 0.9rem; }
|
||||||
|
|
||||||
/* line 137, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 148, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item mct-representation .t-object-label {
|
|
||||||
left: 15px; }
|
|
||||||
/* line 142, ../../../../general/res/sass/tree/_tree.scss */
|
|
||||||
.tree-item mct-representation.s-status-pending .t-object-label:before {
|
.tree-item mct-representation.s-status-pending .t-object-label:before {
|
||||||
font-size: 1.4em;
|
|
||||||
color: #0099cc;
|
|
||||||
position: absolute;
|
|
||||||
left: 5px;
|
|
||||||
top: 50%;
|
|
||||||
width: 1.4em;
|
|
||||||
-moz-transform: translateY(-50%);
|
|
||||||
-ms-transform: translateY(-50%);
|
|
||||||
-webkit-transform: translateY(-50%);
|
|
||||||
transform: translateY(-50%);
|
|
||||||
-moz-animation-name: rotateCentered;
|
-moz-animation-name: rotateCentered;
|
||||||
-webkit-animation-name: rotateCentered;
|
-webkit-animation-name: rotateCentered;
|
||||||
animation-name: rotateCentered;
|
animation-name: rotateCentered;
|
||||||
@ -5667,30 +5676,40 @@ ul.tree {
|
|||||||
-moz-animation-timing-function: linear;
|
-moz-animation-timing-function: linear;
|
||||||
-webkit-animation-timing-function: linear;
|
-webkit-animation-timing-function: linear;
|
||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
border-color: rgba(0, 0, 255, 0.25);
|
border-color: rgba(0, 153, 204, 0.25);
|
||||||
border-top-color: blue;
|
border-top-color: #0099cc;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 2px;
|
border-width: 0.25em;
|
||||||
-moz-border-radius: 100%;
|
-moz-border-radius: 100%;
|
||||||
-webkit-border-radius: 100%;
|
-webkit-border-radius: 100%;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
content: ""; }
|
content: ""; }
|
||||||
@-moz-keyframes rotateCentered {
|
@-moz-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@-webkit-keyframes rotateCentered {
|
@-webkit-keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
@keyframes rotateCentered {
|
@keyframes rotateCentered {
|
||||||
0% {
|
0% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
transform: translateX(-50%) translateY(-50%) rotate(0deg); }
|
||||||
100% {
|
100% {
|
||||||
|
-moz-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-ms-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(359deg);
|
||||||
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
|
||||||
/* line 147, ../../../../general/res/sass/tree/_tree.scss */
|
/* line 152, ../../../../general/res/sass/tree/_tree.scss */
|
||||||
.tree-item mct-representation.s-status-pending .t-object-label .t-item-icon .t-item-icon-glyph {
|
.tree-item mct-representation.s-status-pending .t-object-label .t-item-icon .t-item-icon-glyph {
|
||||||
display: none; }
|
display: none; }
|
||||||
|
|
||||||
|
@ -20,11 +20,12 @@
|
|||||||
at runtime from the About dialog for additional information.
|
at runtime from the About dialog for additional information.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<div class="search-result-item"
|
<div class="search-result-item l-flex-row flex-elem grows"
|
||||||
ng-class="{selected: ngModel.selectedObject.getId() === domainObject.getId()}">
|
ng-class="{selected: ngModel.selectedObject.getId() === domainObject.getId()}">
|
||||||
<mct-representation key="'label'"
|
<mct-representation key="'label'"
|
||||||
mct-object="domainObject"
|
mct-object="domainObject"
|
||||||
ng-model="ngModel"
|
ng-model="ngModel"
|
||||||
ng-click="ngModel.selectedObject = domainObject">
|
ng-click="ngModel.selectedObject = domainObject"
|
||||||
|
class="l-flex-row flex-elem grows">
|
||||||
</mct-representation>
|
</mct-representation>
|
||||||
</div>
|
</div>
|
@ -48,7 +48,8 @@
|
|||||||
<mct-representation key="'search-item'"
|
<mct-representation key="'search-item'"
|
||||||
ng-repeat="result in results"
|
ng-repeat="result in results"
|
||||||
mct-object="result.object"
|
mct-object="result.object"
|
||||||
ng-model="ngModel">
|
ng-model="ngModel"
|
||||||
|
class="l-flex-row flex-elem grows">
|
||||||
</mct-representation>
|
</mct-representation>
|
||||||
<a class="load-more-button s-btn vsm" ng-if="controller.areMore()" ng-click="controller.loadMore()">More Results</a>
|
<a class="load-more-button s-btn vsm" ng-if="controller.areMore()" ng-click="controller.loadMore()">More Results</a>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user