Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3623 | Rev 3712 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3623 Rev 3639
Línea 152... Línea 152...
152
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/chat.css') ?>" />
152
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/chat.css') ?>" />
153
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/style-cesa.css') ?>" />
153
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/style-cesa.css') ?>" />
154
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/main.css') ?>" />
154
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/main.css') ?>" />
155
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/dashboard.css') ?>" />
155
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/dashboard.css') ?>" />
156
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/navbar.css') ?>" />
156
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/navbar.css') ?>" />
157
    <style>
-
 
158
      :root {
-
 
159
        --bg-color: #fff;
-
 
160
        --body-bg-color: #f2f2f2;
-
 
161
        --bg-color-secondary: #D9D9D9;
-
 
162
        --font-color: #16283c;
-
 
163
        --font-color-hover: #1d315c;
-
 
164
        --title-color: #000;
-
 
165
        --subtitle-color: #626d7a;
-
 
166
        --icons-color: #666666;
-
 
167
        --button-bg: #16283c;
-
 
168
        --button-bg-hover: #1d315c;
-
 
169
        --button-text-color: #fff;
-
 
170
        --button-bg-secondary: #0000;
-
 
171
        --button-bg-secondary-hover: #909090;
-
 
172
        --button-text-color-secondary: #000;
-
 
173
        --button-bg-tertiary: #f4f4f4;
-
 
174
        --button-text-color-tertiary: #909090;
-
 
175
        --border-primary: #e8e8e8;
-
 
176
        --border-trasnparent: #0000;
-
 
177
        --chat-received: #fff;
-
 
178
        --chat-send: #d8f1e4;
-
 
179
        --chat-color: #626d7a;
-
 
180
 
-
 
181
        --dark-blue: #01245d;
-
 
182
        --primary-green: #1eb89e;
-
 
183
        --light-font: #bebebe;
-
 
184
        --light-gray: #bebebe;
-
 
185
        --dark-white: #e7e7e7;
-
 
186
        --gray: #909090;
-
 
187
        --primary-lightblue: #0961bf;
-
 
188
        --primary-lightblue-hover: #1e5591;
-
 
189
        --yellow-highlight: #ecec0e;
-
 
190
        --yellow-darker: #decd00;
-
 
191
        --background-gray: #f5f5f7;
-
 
192
        --danger: #e20808;
-
 
193
        --danger-hover: #a10707;
-
 
194
        --shadow-gray: rgb(0 0 0 / 5%);
-
 
195
        --online-green: #42b72a;
-
 
196
        --blue: #0860bf;
-
 
197
        --border-gray: #e8e8e8;
-
 
198
        --border-gray-primary: #b3b3b3;
-
 
199
        --white: #ffffff;
-
 
200
        --black: #000000;
-
 
201
        --dark-blue-pr: #16283c;
-
 
202
 
157
    
203
        --white-backdrop: rgba(255, 255, 255, 0.4);
-
 
204
        --grayline-border: 1px solid #e5e5e5;
-
 
205
        --border-radius: 10px;
-
 
206
        --light-shadow: 0px 0px 11px 0px rgb(0 0 0 /10%);
-
 
207
        --shadow: 0px 4px 14px -2px rgb(0 0 0 / 12%);
-
 
208
      }
-
 
209
    </style>
-
 
210
  <?php endif; ?>
158
  <?php endif; ?>
Línea 211... Línea 159...
211
 
159
 
212
  <?php
160
  <?php
-
 
161
  echo $this->headStyle();
213
  echo $this->headStyle();
162
  echo $this->networkStylesAndColorsHelper();
214
  echo $this->headLink();
163
  echo $this->headLink();
215
  echo $this->headScript();
164
  echo $this->headScript();
Línea 216... Línea 165...
216
  ?>
165
  ?>
Línea 225... Línea 174...
225
 
174
 
226
    <div id="app" style="min-height: 80vh">
175
    <div id="app" style="min-height: 80vh">
227
      <?php echo $this->content ?>
176
      <?php echo $this->content ?>
Línea 228... Línea 177...
228
    </div>
177
    </div>
229
 
178
 
230
    <?php if ($currentUser->hasIdentity()) {
179
    <?php if ($currentUser->hasIdentity() && !$currentUser->hasImpersonate()) {
231
      $user = $currentUser->getUser();
180
      $user = $currentUser->getUser();
232
      echo $this->chatHelper($user->id);
181
      echo $this->chatHelper($user->id);