Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Licensed to the Apache Software Foundation (ASF) under one or more
0003  * contributor license agreements.  See the NOTICE file distributed with
0004  * this work for additional information regarding copyright ownership.
0005  * The ASF licenses this file to You under the Apache License, Version 2.0
0006  * (the "License"); you may not use this file except in compliance with
0007  * the License.  You may obtain a copy of the License at
0008  *
0009  *    http://www.apache.org/licenses/LICENSE-2.0
0010  *
0011  * Unless required by applicable law or agreed to in writing, software
0012  * distributed under the License is distributed on an "AS IS" BASIS,
0013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0014  * See the License for the specific language governing permissions and
0015  * limitations under the License.
0016  */
0017 
0018 #plan-viz-graph .label {
0019   font-weight: normal;
0020   text-shadow: none;
0021   color: #333;
0022 }
0023 
0024 #plan-viz-graph svg g.cluster rect {
0025   fill: #A0DFFF;
0026   stroke: #3EC0FF;
0027   stroke-width: 1px;
0028 }
0029 
0030 #plan-viz-graph svg g.node rect {
0031   fill: #C3EBFF;
0032   stroke: #3EC0FF;
0033   stroke-width: 1px;
0034 }
0035 
0036 /* Highlight the SparkPlan node name */
0037 #plan-viz-graph svg text :first-child:not(.stageId-and-taskId-metrics) {
0038   font-weight: bold;
0039 }
0040 
0041 #plan-viz-graph svg text {
0042   fill: #333;
0043 }
0044 
0045 #plan-viz-graph svg path {
0046   stroke: #444;
0047   stroke-width: 1.5px;
0048 }
0049 
0050 /* Breaks the long string like file path when showing tooltips */
0051 .tooltip-inner {
0052   word-wrap:break-word;
0053 }