web/res/js/jquery.splitter.css
author ymh <ymh.work@gmail.com>
Wed, 18 Dec 2024 15:24:41 +0100
changeset 1584 257c14dae52a
parent 1514 5869151a1f2f
permissions -rwxr-xr-x
Added tag V09.006 for changeset 459a88818bec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     1
/*!
1514
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
     2
 * Style Sheet for jQuery splitter Plugin version 0.28.3
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
     3
 * Copyright (C) 2010-2019 Jakub T. Jankiewicz <https://jcubic.pl/me>
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
     4
 *
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
     6
 * it under the terms of the GNU Lesser General Public License as published by
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
     7
 * the Free Software Foundation, either version 3 of the License, or
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
     8
 * (at your option) any later version.
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     9
 *
1514
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    13
 * GNU Lesser General Public License for more details.
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    14
 *
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    15
 * You should have received a copy of the GNU Lesser General Public License
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    17
 */
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    18
.splitter_panel {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    19
  position: relative;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    20
}
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    21
.splitter_panel .vsplitter {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    22
    background-color: grey;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    23
    cursor: col-resize;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    24
    z-index:900;
1304
10974bff4dae upgrade metadataplayer + publish enmi 14and 15
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 1198
diff changeset
    25
    width: 7px;
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    26
}
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    27
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    28
.splitter_panel .hsplitter {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    29
    background-color: #5F5F5F;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    30
    cursor: row-resize;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    31
    z-index: 800;
1304
10974bff4dae upgrade metadataplayer + publish enmi 14and 15
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 1198
diff changeset
    32
    height: 7px;
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    33
}
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    34
.splitter_panel .vsplitter.splitter-invisible,
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    35
.splitter_panel .hsplitter.splitter-invisible {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    36
    background: none;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    37
}
1514
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    38
.splitter_panel .vsplitter,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    39
.splitter_panel .left_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    40
.splitter_panel .right_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    41
.splitter_panel .hsplitter,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    42
.splitter_panel .top_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    43
.splitter_panel .bottom_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    44
.splitter_panel .horizontal_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    45
.splitter_panel .vertical_panel {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    46
    position: absolute;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    47
    overflow: auto;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    48
}
1514
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    49
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    50
.splitter_panel .vsplitter,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    51
.splitter_panel .left_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    52
.splitter_panel .right_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    53
.splitter_panel .vertical_panel {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    54
  height: 100%;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    55
}
1514
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    56
.splitter_panel .hsplitter,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    57
.splitter_panel .top_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    58
.splitter_panel .bottom_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    59
.splitter_panel .horizontal_panel {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    60
  width: 100%;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    61
}
1514
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    62
.splitter_panel .top_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    63
.splitter_panel .left_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    64
.splitter_panel .vsplitter,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    65
.splitter_panel .vertical_panel {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    66
   top: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    67
}
1514
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    68
.splitter_panel .top_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    69
.splitter_panel .bottom_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    70
.splitter_panel .left_panel,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    71
.splitter_panel .hsplitter,
5869151a1f2f Upgrade various js dependencies
ymh <ymh.work@gmail.com>
parents: 1304
diff changeset
    72
.splitter_panel .horizontal_panel {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    73
   left: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    74
}
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    75
.splitter_panel .bottom_panel {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    76
   bottom: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    77
}
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    78
.splitter_panel .right_panel {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    79
   right: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    80
}
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    81
.splitterMask {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    82
  position: absolute;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    83
  left: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    84
  top: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    85
  right: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    86
  bottom: 0;
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    87
  z-index: 1000;
1304
10974bff4dae upgrade metadataplayer + publish enmi 14and 15
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 1198
diff changeset
    88
}