Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5438 | Rev 5484 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3508 stevensc 1
/*===================== TABLE OF CONTENT ======================= 1.	Header 2.  Nav Hover =============================================================*/
2
@import "./settings/variables.scss";
3
 
4
header {
5
    width: 100%;
5126 stevensc 6
    background-color: $bg-color;
7
    border-bottom: 1px solid $border-primary;
3508 stevensc 8
}
9
 
5150 stevensc 10
.user-profile-extended-ov {
11
    background-color: $bg-color;
12
    border-radius: $border-radius;
13
    box-shadow: $shadow;
14
    padding: 1rem;
15
    width: 100%;
16
 
17
    h3 {
18
        color: $title-color;
19
        font-size: 18px;
20
        font-weight: 600;
21
        margin-bottom: 0.5rem;
22
    }
23
 
24
    span,
25
    p {
26
        line-height: 22px;
27
        color: $font-color;
28
    }
29
 
30
    i {
31
        color: $font-color;
32
        font-size: 13px;
33
    }
34
 
35
    strong {
36
        font-weight: bold !important;
37
    }
38
}
39
 
40
.user-profile-ov {
41
    background-color: $bg-color;
42
    border-radius: $border-radius;
43
    box-shadow: $shadow;
44
    padding: 1rem;
45
    width: 100%;
46
 
47
    h3 {
48
        color: $title-color;
49
        font-size: 18px;
50
        font-weight: 600;
51
        margin-bottom: 20px;
52
 
53
        a {
54
            color: $title-color;
55
        }
56
    }
57
 
58
    i {
59
        color: $title-color;
60
        font-size: 13px;
61
        padding-left: 5px;
62
    }
63
 
64
    h4 {
65
        font-size: 16px;
66
        color: $title-color;
67
        font-weight: 600;
68
        margin-bottom: 10px;
69
    }
70
 
71
    p {
72
        color: $font-color;
73
        font-size: 14px;
74
        line-height: 24px;
75
    }
76
 
77
    .st2 p {
78
        margin-bottom: 23px;
79
    }
80
 
81
    &>span {
82
        color: $font-color;
83
        font-size: 14px;
84
        width: 100%;
85
        margin-bottom: 8px;
86
        margin-top: 3px;
87
    }
88
 
89
    ul li {
90
        display: inline-block;
91
        margin-bottom: 10px;
92
        padding: 0 2px;
93
 
94
        a {
95
            display: inline-block;
96
            color: $bg-color;
97
            font-size: 14px;
98
            font-weight: 600;
99
            background-color: $font-color;
100
            border-radius: 30px;
101
            padding: 10px 15px;
102
        }
103
    }
104
 
105
}
106
 
107
.user-social-network-ov {
108
    width: 100%;
109
    background-color: $bg-color;
110
 
111
    h3 {
112
        color: $title-color;
113
        font-size: 18px;
114
        font-weight: 600;
115
    }
116
 
117
    i {
118
        color: $font-color;
119
        font-size: 13px;
120
        padding-left: 5px;
121
    }
122
}
123
 
5438 stevensc 124
 
5150 stevensc 125
// User profile ov - End
3508 stevensc 126
.msg-numbers {
127
    background-color: #1dac98;
128
}
129
 
130
.message-btn a {
131
    margin: 0.5rem 0;
132
}
133
 
134
.sign-in {
135
    background-color: white;
136
}
137
 
138
.sign-control li.current a {
3737 stevensc 139
    background-color: $button-bg-secondary;
3508 stevensc 140
}
141
 
142
.sign-control li a.current {
3737 stevensc 143
    background-color: $button-bg-secondary;
144
    color: $button-text-color-secondary !important;
145
    border: 1px solid $border-primary;
3508 stevensc 146
}
147
 
148
.signup-tab ul li.current a {
149
    background-color: #0961bf;
150
}
151
 
152
.theme-green .back-bar .selected-bar {
153
    background-color: #0961bf;
154
    background-image: linear-gradient(to bottom, #0961bf, #0961bf);
155
}
156
 
157
.theme-green .back-bar .pointer {
158
    background-color: #0961bf;
159
}
160
 
161
.btn-unlike,
162
.btn-like {
163
    color: #0961bf;
164
}
165
 
5076 stevensc 166
.sign_link>a {
3508 stevensc 167
    color: #0961bf;
168
}
169
 
5076 stevensc 170
.view-more>a:hover {
3508 stevensc 171
    color: #0961bf;
172
}
173
 
5076 stevensc 174
.view-more>a {
3508 stevensc 175
    color: #0961bf;
176
}
177
 
178
.nav-tabs .nav-item.show .nav-link,
179
.nav-tabs .nav-link.active {
180
    color: #0961bf;
181
}
182
 
183
.tab-feed ul li.active span {
184
    color: #0961bf;
185
}
186
 
187
.msg-notifc {
188
    background-color: #0961bf;
189
}
190
 
191
.msg-status {
192
    background-color: #0961bf;
193
}
194
 
195
.select-with-icon {
196
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
197
    background-repeat: no-repeat;
198
    background-position-x: 100%;
199
    background-position-y: 5px;
200
}
201
 
4329 stevensc 202
.msgs_icons-container {
3508 stevensc 203
    display: flex;
4773 stevensc 204
    flex-direction: column;
4779 stevensc 205
    gap: 0.5rem;
3508 stevensc 206
}
207
 
208
.messages-sec .icon {
209
    cursor: pointer;
210
    height: 30px;
211
    display: grid;
212
    place-items: center;
213
    width: 30px;
214
    border-radius: 50px;
215
    padding: 0;
216
    transition: all 0.2s;
217
    color: #0860bf;
218
 
5126 stevensc 219
    &:hover {
220
        background-color: #efefef;
221
    }
3508 stevensc 222
}
223
 
5076 stevensc 224
.messages-list>.messages_conversation-search {
3508 stevensc 225
    transition: all 0.2s;
226
    padding: 10px 20px;
227
    position: relative;
228
    overflow: hidden;
229
 
5126 stevensc 230
    input {
231
        outline: none;
232
        box-shadow: none;
233
        border: 1px solid #e6e6e6;
234
    }
3508 stevensc 235
 
5126 stevensc 236
    &.hide {
237
        height: 0;
238
        padding: 0;
239
    }
3508 stevensc 240
}
241
 
242
.message-bar-head .usr-msg-details {
243
    display: flex;
244
    align-items: center;
245
}
246
 
247
.message-select-conversation {
248
    display: grid;
249
    place-items: center;
250
    width: 100%;
4345 stevensc 251
    height: 100%;
3508 stevensc 252
    min-height: 300px;
5076 stevensc 253
 
4345 stevensc 254
    .msgs-select-container {
255
        display: flex;
256
        flex-direction: column;
257
        align-items: center;
258
        gap: 0.5rem;
5076 stevensc 259
 
4345 stevensc 260
        .icon {
261
            font-size: 2.5rem;
5076 stevensc 262
 
4345 stevensc 263
            &:hover {
264
                background-color: #0000;
265
            }
266
        }
267
    }
3508 stevensc 268
}
269
 
270
@media (min-width: 1200px) {
271
    .msgs-container {
272
        max-width: 1000px;
273
    }
274
}
275
 
276
.main-conversation-box .message-bar-head .usr-msg-details .icon {
277
    display: none;
278
}
279
 
280
.msgs-hide {
281
    font-size: 1.2rem;
282
    color: var(--gray);
283
}
284
 
285
@media (max-width: 992px) {
286
    .main-conversation-box .message-bar-head .usr-msg-details .icon {
287
        display: grid;
288
    }
289
}
290
 
291
@media (max-width: 992px) {
292
    .msgs-hide {
293
        display: none;
294
    }
295
}
296
 
4373 stevensc 297
.icon-hide {
298
    display: flex;
299
    align-items: center;
300
    gap: 0.5rem;
301
    padding-top: 0.5rem;
302
    font-size: 1.2rem;
303
    cursor: pointer;
5076 stevensc 304
 
4373 stevensc 305
    &,
306
    span {
307
        color: $icons-color;
308
    }
5076 stevensc 309
 
4373 stevensc 310
    @media (min-width: 992px) {
3508 stevensc 311
        display: none !important;
312
    }
313
}
314
 
315
#shared_with {
316
    font-size: 16px;
317
    display: inline-block;
318
    height: 40px;
319
    padding: 0 15px;
320
    line-height: 40px;
321
    font-weight: 500;
322
}
323
 
5076 stevensc 324
#shared_with>option {
3508 stevensc 325
    font-size: 1.2rem;
326
    display: inline-block;
327
    height: 40px;
328
    padding: 0 15px;
329
    line-height: 40px;
330
    font-weight: 500;
331
}
332
 
333
.flww {
334
    background-color: #0961bf;
335
}
336
 
337
.tab-feed ul li.active span {
338
    color: #1dac98;
339
}
340
 
5076 stevensc 341
.add-pic-box [type="file"]+label {
3508 stevensc 342
    border: 2px solid #0961bf;
343
    color: #0961bf;
344
}
345
 
5076 stevensc 346
.add-pic-box [type="file"]+label:hover {
3508 stevensc 347
    background: #0961bf;
348
}
349
 
350
.user-pro-img .add-dp {
351
    left: 34%;
352
}
353
 
354
/****estilos del feed***/
355
.img-sm {
356
    width: 46px;
357
    height: 46px;
358
}
359
 
360
.panel .panel-footer,
5076 stevensc 361
.panel> :last-child {
3508 stevensc 362
    border-bottom-left-radius: 0;
363
    border-bottom-right-radius: 0;
364
}
365
 
366
.media-block .media-left {
367
    display: block;
368
    float: left;
369
}
370
 
371
.media-block .media-right {
372
    float: right;
373
}
374
 
375
.media-block .media-body {
376
    display: block;
377
    overflow: hidden;
378
    width: auto;
379
}
380
 
381
.middle .media-left,
382
.middle .media-right,
383
.middle .media-body {
384
    vertical-align: middle;
385
}
386
 
387
.thumbnail {
388
    border-radius: 0;
389
    border-color: #e9e9e9;
390
}
391
 
392
.tag.tag-sm,
5076 stevensc 393
.btn-group-sm>.tag {
3508 stevensc 394
    padding: 5px 10px;
395
}
396
 
397
.tag:not(.label) {
398
    background-color: #fff;
399
    padding: 6px 12px;
400
    border-radius: 2px;
401
    border: 1px solid #cdd6e1;
402
    font-size: 12px;
403
    line-height: 1.42857;
404
    vertical-align: middle;
405
    -webkit-transition: all 0.15s;
406
    transition: all 0.15s;
407
}
408
 
409
.text-muted,
410
a.text-muted:hover,
411
a.text-muted:focus {
412
    color: #acacac;
413
}
414
 
415
.text-sm {
416
    font-size: 0.9em;
417
}
418
 
419
.text-5x,
420
.text-4x,
421
.text-5x,
422
.text-2x,
423
.text-lg,
424
.text-sm,
425
.text-xs {
426
    line-height: 1.25;
427
}
428
 
429
.btn-trans {
430
    background-color: transparent;
431
    border-color: transparent;
432
    color: #929292;
433
}
434
 
435
.btn-icon {
436
    padding-left: 9px;
437
    padding-right: 9px;
438
}
439
 
440
.btn-sm,
5076 stevensc 441
.btn-group-sm>.btn,
3508 stevensc 442
.btn-icon.btn-sm {
443
    padding: 5px 10px !important;
444
}
445
 
446
.save {
447
    background-color: #0961bf;
448
}
449
 
450
.place-bid-btn {
451
    background-color: #0961bf !important;
452
}
453
 
454
.sn-field-has-error {
455
    border: 1px solid red;
456
    margin-bottom: 5px;
457
}
458
 
459
.sn-field-invalid-feedback {
460
    color: red;
461
    font-size: 13px;
462
    line-height: 20px;
463
    margin-bottom: 5px;
464
}
465
 
466
.form-group {
467
    margin-bottom: 5px;
468
    margin-top: 5px;
469
}
470
 
471
.form-group-has-error {
472
    border: 1px solid red !important;
473
}
474
 
475
.form-group-invalid-feedback {
476
    color: red;
477
    font-size: 13px;
478
    line-height: 20px;
479
    margin-bottom: 5px;
480
}
481
 
5076 stevensc 482
.fgt-sec input[type="checkbox"]+label span:before {
3508 stevensc 483
    background-color: #0961bf;
484
}
485
 
486
.info-page {
487
    padding: 50px 0;
488
}
489
 
490
.section_admin_title_buttons {
491
    width: 100%;
492
    display: flex;
493
    margin-left: 0;
494
    justify-content: space-between;
495
    align-items: center;
496
}
497
 
498
.market_admin_title_buttons {
5303 stevensc 499
    width: 100%;
3508 stevensc 500
    display: flex;
3987 stevensc 501
    gap: 0.5rem;
5304 stevensc 502
    flex-direction: column-reverse;
5300 stevensc 503
 
504
    .search_input,
505
    .search_categories {
506
        position: relative;
507
        margin-bottom: 0;
508
 
509
        input,
510
        select,
511
        input:focus {
512
            background-color: $bg-color;
5303 stevensc 513
            border-radius: 5rem;
5300 stevensc 514
 
515
            &::placeholder {
516
                color: $font-color;
517
            }
518
        }
519
    }
3508 stevensc 520
}
521
 
522
.search-btn {
5304 stevensc 523
    padding: 0 .8rem;
3508 stevensc 524
    right: 0;
525
    height: 100%;
5303 stevensc 526
    background: $button-bg;
3508 stevensc 527
    position: absolute;
528
    top: 0;
5303 stevensc 529
    color: $button-text-color;
3508 stevensc 530
    font-weight: 600;
5303 stevensc 531
    border-start-end-radius: 5rem;
532
    border-bottom-right-radius: 5rem;
533
    opacity: .8;
534
    transition: all 200ms;
535
 
5304 stevensc 536
    &:hover,
537
    &:active {
5303 stevensc 538
        opacity: 1;
539
    }
3508 stevensc 540
}
541
 
542
.section_admin_title_buttons h1.title,
543
.section_admin_title_buttons h2 {
3523 stevensc 544
    color: $title-color;
3508 stevensc 545
    font-weight: bold;
546
    font-size: 18px;
547
}
548
 
549
.section_admin_title_buttons h2 {
550
    cursor: pointer;
551
}
552
 
553
@media (min-width: 768px) {
554
    .section_admin_title_buttons {
555
        width: 50%;
556
        margin-left: auto;
557
    }
558
 
559
    .market_admin_title_buttons {
5305 stevensc 560
        align-items: center;
3508 stevensc 561
        flex-direction: row;
5305 stevensc 562
        justify-content: end;
3508 stevensc 563
    }
564
 
565
}
566
 
567
.section_admin_form {
568
    float: left;
569
    width: 100%;
570
    padding-left: 15px;
571
}
572
 
573
.section_admin_form form input,
574
.section_admin_form form select {
575
    width: 100%;
576
    padding: 0 15px 0 15px;
577
    color: #000000;
578
    font-size: 14px;
579
    border: 1px solid #e5e5e5;
580
    height: 40px;
581
}
582
 
583
.section_admin_form form textarea {
584
    width: 100%;
585
    padding: 10px 15px 0 15px;
586
    color: #000000;
587
    font-size: 14px;
588
    border: 1px solid #e5e5e5;
589
    height: 300px;
590
}
591
 
592
/* .section_admin_form form button {color: #ffffff; font-size: 16px; background-color: #0961bf; padding: 12px 27px; border: 0; font-weight: 500; margin-top: 30px; cursor: pointer; }*/
593
.section_admin_form .form-group label {
594
    color: #666 !important;
595
    font-weight: 400;
596
    font-size: 14px;
597
    padding-bottom: 5px;
598
}
599
 
600
.section_admin_form .form-group .toggle-group label {
601
    color: #fff !important;
602
    font-weight: 400;
603
    font-size: 16px;
604
    padding-bottom: 5px;
605
}
606
 
607
.section_admin_form .form-group .toggle-group label.toggle-off {
608
    background-color: #808080;
609
    border-color: #808080;
610
}
611
 
612
.section_admin_form .form-group .toggle-group label.toggle-off:hover {
613
    background-color: #808080;
614
    border-color: #808080;
615
}
616
 
617
.select2-results__option {
618
    display: block;
619
    padding: 10px 15px 0 15px !important;
620
    overflow: hidden;
621
    text-overflow: ellipsis;
622
    white-space: nowrap;
623
    font-size: 14px;
624
    border: 1px solid #e5e5e5;
625
    height: 40px;
626
}
627
 
628
.text-vertical-middle {
629
    vertical-align: middle !important;
630
}
631
 
632
table.dataTable thead .sorting:before,
633
table.dataTable thead .sorting_asc:before,
634
table.dataTable thead .sorting_desc:before,
635
table.dataTable thead .sorting_asc_disabled:before,
636
table.dataTable thead .sorting_desc_disabled:before {
637
    right: 1em;
638
    /* content: "\2191";*/
639
    content: none !important;
640
}
641
 
642
table.dataTable thead .sorting:after,
643
table.dataTable thead .sorting_asc:after,
644
table.dataTable thead .sorting_desc:after,
645
table.dataTable thead .sorting_asc_disabled:after,
646
table.dataTable thead .sorting_desc_disabled:after {
647
    right: 0.5em;
648
    /*content: "\2193";*/
649
    content: none !important;
650
}
651
 
652
.btn-edit {
653
    display: inline-block;
654
    padding: 0 12px;
655
    color: #fff;
656
    height: 35px;
657
    line-height: 35px;
658
    background-color: #0961bf;
659
}
660
 
661
.btn-delete {
662
    display: inline-block;
663
    padding: 0 12px;
664
    color: #fff;
665
    height: 35px;
666
    line-height: 35px;
667
    background-color: #e44d3a;
668
}
669
 
670
.overview-box.open {
671
    z-index: 1000 !important;
672
}
673
 
674
.social_links li a {
675
    line-height: 18px;
676
}
677
 
678
.datepicky {
679
    float: none;
680
}
681
 
682
.datefm {
683
    float: none;
684
}
685
 
686
span.group-span-filestyle {
687
    border: 1px solid #aaa;
688
    color: #fff;
689
    background-color: #0961bf;
690
    margin-top: 10px;
691
}
692
 
693
span.group-span-filestyle:hover {
694
    color: #fff;
695
    background-color: #0961bf;
696
}
697
 
698
.pac-container {
699
    z-index: 1051 !important;
700
}
701
 
702
.custom-file-label:after {
703
    content: none;
704
}
705
 
706
.add-pic-box a {
707
    background: #fff;
708
    border: 2px solid #0961bf;
709
    border-radius: 3px;
710
    color: #0961bf;
711
    cursor: pointer;
712
    display: inline-block;
713
    font-size: 15px;
714
    font-weight: 600;
715
    outline: none;
716
    padding: 12px 20px;
717
    position: relative;
718
    transition: all 0.3s;
719
    vertical-align: middle;
720
    margin: 0;
721
    text-transform: uppercase;
722
}
723
 
724
#skills-box ul {
725
    height: auto;
726
}
727
 
5076 stevensc 728
.custom-control-input:checked~.custom-control-label::before {
3508 stevensc 729
    color: #fff;
730
    border-color: #007bff;
731
    background-color: #007bff;
732
    box-shadow: none;
733
    outline: none;
734
}
735
 
736
#user-img-change {
737
    width: 150px;
738
    height: 150px;
739
    margin-right: 10px;
740
    -webkit-border-radius: 100px;
741
    -moz-border-radius: 100px;
742
    -ms-border-radius: 100px;
743
    -o-border-radius: 100px;
744
    border-radius: 100px;
3589 stevensc 745
    background-color: #fff;
3508 stevensc 746
}
747
 
748
.btn-onroom {
749
    cursor: pointer;
750
}
751
 
752
.form-group .toggle-btn .custom-control-label {
753
    position: relative;
754
    padding-left: 50px;
755
}
756
 
757
.file-upload-indicator {
758
    display: none;
759
}
760
 
761
b,
762
strong {
763
    font-weight: bolder !important;
764
}
765
 
766
a.read-more {
767
    color: #666666;
768
    font-weight: bold;
769
}
770
 
771
a.read-morea:visited {
772
    color: #666666;
773
    font-weight: bold;
774
}
775
 
776
.show-read-more p {
777
    text-align: justify;
778
    font-weight: 600;
3551 stevensc 779
    color: $subtitle-color;
5076 stevensc 780
 
3987 stevensc 781
    .more-text {
782
        display: none;
783
    }
3508 stevensc 784
}
785
 
786
.btn-trans:hover {
787
    color: #929292 !important;
788
}
789
 
5076 stevensc 790
.job-status-bar>a:hover {
3508 stevensc 791
    color: #1e5591 !important;
792
}
793
 
5076 stevensc 794
.job-status-bar>ul>li>a:hover {
3508 stevensc 795
    color: #1e5591;
796
}
797
 
798
.comment-section {
799
    box-shadow: none;
800
}
801
 
802
.process-comm {
803
    padding-top: 10px;
804
    padding-bottom: 20px;
805
}
806
 
807
nav ul li a {
808
    color: #000000;
809
}
810
 
811
.usy-name h4 {
812
    color: #000000;
813
    font-size: 16px;
814
    text-transform: capitalize;
815
    font-weight: 600;
816
    margin-bottom: 5px;
817
    margin-top: 2px;
818
}
819
 
820
.message-btn a.btn-request-connection {
821
    background-color: #53d690;
822
}
823
 
824
.message-btn a.btn-cancel-connection {
825
    background-color: #e44d3a;
826
}
827
 
828
.message-btn a.btn-send-message {
829
    background-color: #51a5fb;
830
}
831
 
832
.bootbox-confirm .btn-danger {
833
    color: #000000;
834
}
835
 
836
.title-bar {
837
    float: left;
838
    width: 280px;
839
    margin-top: 12px;
840
    margin-bottom: 9px;
841
    vertical-align: middle;
842
}
843
 
844
.title-bar .title {
845
    color: #ffffff;
846
    font-size: 20px;
847
    text-transform: capitalize;
848
    font-weight: 600;
849
}
850
 
851
/*New Style*/
852
.online-btn {
853
    border-radius: 50px;
854
    width: 20px;
855
    height: 20px;
856
}
857
 
858
/***********************************new style jm*********************************/
859
.forum-links ul li.active a {
860
    color: #1dac98;
861
}
862
 
863
.forum-links ul li.active {
864
    border-color: #1dac98;
865
}
866
 
867
.ask-question {
868
    color: #0961bf !important;
869
}
870
 
5076 stevensc 871
.suggestion-usd>span i:hover {
3508 stevensc 872
    background-color: #f4e6a6;
873
}
874
 
5076 stevensc 875
.view-more>.btn {
3508 stevensc 876
    background-color: #0961bf;
877
}
878
 
879
/* #shared_with {background-color: #0961bf; } #shared_with :hover {color: blank; background-color: #007bff; } */
880
.bid_now {
881
    background-color: #0961bf;
882
}
883
 
884
.follow {
885
    background-color: #1eb89e;
886
}
887
 
888
.footy-sec.mn ul li a {
889
    color: #01245d;
890
    font-size: 0.9rem;
891
}
892
 
893
.footy-sec.mn ul li a:hover {
894
    color: #01245d;
895
    font-weight: bold;
896
    transition: all 0.5s;
897
}
898
 
899
.footy-sec.mn p {
900
    color: #01245d;
901
}
902
 
903
.star-descp ul li i {
904
    color: #cacf8c;
905
}
906
 
907
.hire-us {
908
    background-color: #0961bf;
909
}
910
 
911
.company-up-info {
912
    background-color: #ffff;
913
}
914
 
915
.post_with_border {
916
    border-left: 4px solid #1eb89e;
917
}
918
 
919
.sign_link {
920
    background-color: #ffff;
921
}
922
 
923
.search-title {
924
    padding-left: 2%;
925
    font-size: 1.2rem;
926
}
927
 
928
.portfolio-gallery-sec {
929
    background-color: #f5f5f7;
930
}
931
 
932
.filter-dd form input,
933
.filter-dd form select {
934
    background-color: #fff;
935
}
936
 
937
.feed-comment-container {
938
    margin-top: 1rem;
939
}
940
 
941
.pagination li .page-link {
942
    color: #0961bf;
943
}
944
 
945
.comment-section {
946
    background-color: #f5f5f7;
947
}
948
 
949
.company_profile_info {
950
    border-radius: 5px;
951
}
952
 
953
.full-width {
954
    border-radius: 5px;
955
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 5%);
956
}
957
 
958
.tab-feed.st2 ul li :hover {
959
    border-bottom: 3px solid #f4e6a6;
960
}
961
 
962
.border-none {
963
    border: none !important;
964
}
965
 
5076 stevensc 966
.usr-pic>img {
3508 stevensc 967
    width: 80%;
968
}
969
 
970
.user-specs {
971
    padding: 39px 0 10px 0;
972
}
973
 
974
.job-status-bar {
975
    /* background-image: linear-gradient(#f5f5f7, #ffff); */
976
    display: flex;
977
    justify-content: space-between;
978
    align-items: center;
979
    /* border-radius: 10px; */
980
}
981
 
982
.message-bar-head {
983
    display: flex;
984
    height: 13vh;
985
    justify-content: space-between;
986
    padding: 20px;
987
    width: 100%;
988
}
989
 
990
.form-control:disabled,
991
.form-control[readonly] {
992
    background-color: #ffff;
993
}
994
 
995
.file-caption.icon-visible .file-caption-name {
996
    padding-bottom: 15px;
997
}
998
 
999
/**notificaciones**/
1000
.notification {
1001
    color: white;
1002
    text-decoration: none;
1003
    padding: 0px 10px;
1004
    position: relative;
1005
    display: inline-block;
1006
    border-radius: 2px;
1007
    font-size: 16px;
1008
}
1009
 
1010
.text-submenu {
1011
    color: #0961bf;
1012
 
5438 stevensc 1013
    &:hover {
1014
        font-weight: bold;
1015
        color: #0961bf;
1016
        transition: all 0.5s;
1017
    }
3508 stevensc 1018
}
1019
 
1020
.my-company-dropdown.show {
1021
    display: block;
1022
}
1023
 
1024
/**estilos altos de las columnas* .right-sidebar {margin-top: -7px; }*/
1025
 
1026
.message-btn {
1027
    display: inherit;
1028
    flex-direction: column;
5076 stevensc 1029
}