old-style.scss 2.64 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at

//     http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


/* old-style.scss */

//@extend-elements
//original selectors
//.inputs button.addAttr, .inputs button.saveAttr
%extend_1 {
    height: 40px; //Instead of the line below you could use @include border-radius($radius, $vertical-radius)
    border-radius: 4px;
    border: 1px solid $white;
    color: $white; //Instead of the line below you could use @include text-shadow($shadow-1, $shadow-2, $shadow-3, $shadow-4, $shadow-5, $shadow-6, $shadow-7, $shadow-8, $shadow-9, $shadow-10)
    text-shadow: 0 -1px 0 $black_25;
    font-weight: bold;
}

.row-margin-bottom {
    margin-bottom: 15px;
}

.list-group-item {
    &:first-child {
        //Instead of the line below you could use @include border-radius($radius, $vertical-radius)
        border-radius: 0;
    }
41

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    &:last-child {
        //Instead of the line below you could use @include border-radius($radius, $vertical-radius)
        border-radius: 0;
    }
}

.h160 {
    height: 160px !important;
}

.subContent {
    width: 500px;
    margin: 30px;
}

.headerDroupDown {
    border-left: 1px solid $white;
    font-size: 11px;
    padding-left: 15px;
    margin-left: 15px;
}

.scrollTagList {
    height: 330px;
    overflow-y: auto;
    margin-bottom: 0;
68

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
    i.fa {
        margin-right: 5px;
    }
}

.menuItem {
    padding: 10px;
    color: $color_havelock_blue_approx;
    cursor: pointer;
}

.tagging {
    display: inline-block;
}

.crossClearText {
    line-height: 20px !important;
}

text {
    font-weight: 300;
    font-family: $font_2, $font_3, $font_4, $font_5;
    font-size: 14px;
}

.switch-blue .switch-selection {
    background: $color_pelorous_approx;
    background-image: linear-gradient(to bottom, $color_picton_blue_approx, $color_pelorous_approx);
}

.switch-yellow .switch-selection {
    background: $color_laser_approx;
    background-image: linear-gradient(to bottom, $color_zombie_approx, $color_laser_approx);
}