Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9233d3f6f2 | |||
| 58febf7d4b | |||
| 725cb6e3cc |
@@ -0,0 +1,19 @@
|
||||
<EgtWPFLib5:EgtCustomWindow x:Class="HelpWndV"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:CefSharpWpf="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
|
||||
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
||||
xmlns:local="clr-namespace:Icarus"
|
||||
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
|
||||
Title="{Binding sTitle}" Icon="/Resources/Icarus.ico"
|
||||
MinHeight="600" MinWidth="800" WindowStyle="None" ResizeMode="NoResize">
|
||||
<EgtWPFLib5:EgtCustomWindow.Resources>
|
||||
<local:CustomMenuHandler x:Key="CustomMenuHandler"/>
|
||||
</EgtWPFLib5:EgtCustomWindow.Resources>
|
||||
<CefSharpWpf:ChromiumWebBrowser x:Name="Browser"
|
||||
MenuHandler="{StaticResource CustomMenuHandler}"/>
|
||||
<!--<CefSharpWpf:ChromiumWebBrowser x:Name="Browser"
|
||||
Address="c:\EgtData\Icarus\Help\lm_1170\\index.html"
|
||||
MenuHandler="{StaticResource CustomMenuHandler}"/>-->
|
||||
|
||||
</EgtWPFLib5:EgtCustomWindow>
|
||||
@@ -0,0 +1,26 @@
|
||||
Imports System.Diagnostics.Eventing
|
||||
Imports System.IO
|
||||
Imports System.Reflection
|
||||
|
||||
Public Class HelpWndV
|
||||
|
||||
Private WithEvents m_HelpWndVM As HelpWndVM
|
||||
|
||||
Sub New(Owner As Window, HelpWndVM As HelpWndVM)
|
||||
MyBase.New(Owner)
|
||||
' This call is required by the designer.
|
||||
InitializeComponent()
|
||||
Me.DataContext = HelpWndVM
|
||||
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
||||
m_HelpWndVM = HelpWndVM
|
||||
'm_HelpWndVM.SetWebBrowser(WebBrowser)
|
||||
Browser.ResourceRequestHandlerFactory = New ResourceHandlerFactory
|
||||
|
||||
Browser.Address = "Icarus.pdf#toolbar=0"
|
||||
End Sub
|
||||
|
||||
'Private Sub CloseWindow(bDialogResult As Boolean) Handles m_HelpWndVM.m_CloseWindow
|
||||
' Me.DialogResult = bDialogResult
|
||||
'End Sub
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,20 @@
|
||||
Public Class HelpWndVM
|
||||
|
||||
'Private m_WebBrowser As WebBrowser
|
||||
'Public ReadOnly Property WebBrowser As WebBrowser
|
||||
' Get
|
||||
' Return m_WebBrowser
|
||||
' End Get
|
||||
'End Property
|
||||
'Friend Sub SetWebBrowser(value As WebBrowser)
|
||||
' m_WebBrowser = value
|
||||
'End Sub
|
||||
|
||||
Sub New()
|
||||
End Sub
|
||||
|
||||
Friend Sub LoadHtml()
|
||||
'm_WebBrowser.Source = New Uri("c:\EgtData\Icarus\Help\lm_1170\index.html")
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,145 @@
|
||||
Imports System.Collections.Specialized
|
||||
Imports System.IO
|
||||
Imports System.Runtime.InteropServices
|
||||
Imports System.Windows.Forms
|
||||
Imports CefSharp
|
||||
Imports CefSharp.Callback
|
||||
|
||||
Public Class ResourceHandler
|
||||
Implements IResourceHandler
|
||||
|
||||
Public Const DefaultMimeType As String = "text/html"
|
||||
Private tempBuffer As Byte()
|
||||
Public Property Charset As String
|
||||
Public Property MimeType As String
|
||||
Public Property Stream As Stream
|
||||
Public Property StatusCode As Integer
|
||||
Public Property StatusText As String
|
||||
Public Property m_ResponseLength As Long?
|
||||
Public Property Headers As NameValueCollection
|
||||
Public Property AutoDisposeStream As Boolean
|
||||
Public Property ErrorCode As CefErrorCode?
|
||||
Private disposedValue As Boolean
|
||||
|
||||
Public Sub New(ByVal Optional mimeType As String = DefaultMimeType, ByVal Optional stream As Stream = Nothing, ByVal Optional autoDisposeStream As Boolean = False, ByVal Optional charset As String = Nothing)
|
||||
If String.IsNullOrEmpty(mimeType) Then
|
||||
Throw New ArgumentNullException("mimeType", "Please provide a valid mimeType")
|
||||
End If
|
||||
|
||||
StatusCode = 200
|
||||
StatusText = "OK"
|
||||
mimeType = "application/pdf"
|
||||
Headers = New NameValueCollection()
|
||||
stream = stream
|
||||
autoDisposeStream = autoDisposeStream
|
||||
charset = charset
|
||||
Headers.Add("Access-Control-Allow-Origin", "*")
|
||||
End Sub
|
||||
Public Sub GetResponseHeaders(response As IResponse, ByRef responseLength As Long, ByRef redirectUrl As String) Implements IResourceHandler.GetResponseHeaders
|
||||
redirectUrl = Nothing
|
||||
responseLength = -1
|
||||
'response.MimeType = MimeType
|
||||
response.MimeType = "application/pdf"
|
||||
response.StatusCode = StatusCode
|
||||
response.StatusText = StatusText
|
||||
response.Headers = Headers
|
||||
|
||||
If Not String.IsNullOrEmpty(Charset) Then
|
||||
response.Charset = Charset
|
||||
End If
|
||||
|
||||
If Not IsNothing(m_ResponseLength) Then
|
||||
responseLength = m_ResponseLength
|
||||
End If
|
||||
|
||||
If Stream IsNot Nothing AndAlso Stream.CanSeek Then
|
||||
|
||||
If m_ResponseLength Is Nothing OrElse responseLength = 0 Then
|
||||
responseLength = Stream.Length
|
||||
End If
|
||||
|
||||
Stream.Position = 0
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Public Sub Cancel() Implements IResourceHandler.Cancel
|
||||
Return
|
||||
End Sub
|
||||
|
||||
Public Function Open(request As IRequest, ByRef handleRequest As Boolean, callback As ICallback) As Boolean Implements IResourceHandler.Open
|
||||
Dim assembly = Reflection.Assembly.GetExecutingAssembly()
|
||||
Dim resourceName = "Icarus.Icarus.pdf"
|
||||
|
||||
Stream = assembly.GetManifestResourceStream(resourceName)
|
||||
callback.Continue()
|
||||
Return True
|
||||
End Function
|
||||
|
||||
Public Function ProcessRequest(request As IRequest, callback As ICallback) As Boolean Implements IResourceHandler.ProcessRequest
|
||||
Return True
|
||||
End Function
|
||||
|
||||
Public Function Skip(bytesToSkip As Long, ByRef bytesSkipped As Long, callback As IResourceSkipCallback) As Boolean Implements IResourceHandler.Skip
|
||||
callback.Dispose()
|
||||
|
||||
If Stream Is Nothing OrElse Not Stream.CanSeek Then
|
||||
bytesSkipped = -2
|
||||
Return False
|
||||
End If
|
||||
|
||||
bytesSkipped = bytesToSkip
|
||||
Stream.Seek(bytesToSkip, SeekOrigin.Current)
|
||||
Return True
|
||||
End Function
|
||||
|
||||
Public Function Read(dataOut As Stream, ByRef bytesRead As Integer, callback As IResourceReadCallback) As Boolean Implements IResourceHandler.Read
|
||||
bytesRead = 0
|
||||
callback.Dispose()
|
||||
|
||||
If Stream Is Nothing Then
|
||||
Return False
|
||||
End If
|
||||
|
||||
If tempBuffer Is Nothing OrElse tempBuffer.Length < dataOut.Length Then
|
||||
tempBuffer = New Byte(dataOut.Length - 1) {}
|
||||
End If
|
||||
|
||||
bytesRead = Stream.Read(tempBuffer, 0, CInt(dataOut.Length))
|
||||
|
||||
If bytesRead = 0 Then
|
||||
Return False
|
||||
End If
|
||||
|
||||
dataOut.Write(tempBuffer, 0, bytesRead)
|
||||
Return bytesRead > 0
|
||||
End Function
|
||||
|
||||
Public Function ReadResponse(dataOut As Stream, ByRef bytesRead As Integer, callback As ICallback) As Boolean Implements IResourceHandler.ReadResponse
|
||||
Throw New NotImplementedException()
|
||||
End Function
|
||||
|
||||
Protected Overridable Sub Dispose(disposing As Boolean)
|
||||
If Not disposedValue Then
|
||||
If disposing Then
|
||||
' TODO: dispose managed state (managed objects)
|
||||
End If
|
||||
|
||||
' TODO: free unmanaged resources (unmanaged objects) and override finalizer
|
||||
' TODO: set large fields to null
|
||||
disposedValue = True
|
||||
End If
|
||||
End Sub
|
||||
|
||||
' ' TODO: override finalizer only if 'Dispose(disposing As Boolean)' has code to free unmanaged resources
|
||||
' Protected Overrides Sub Finalize()
|
||||
' ' Do not change this code. Put cleanup code in 'Dispose(disposing As Boolean)' method
|
||||
' Dispose(disposing:=False)
|
||||
' MyBase.Finalize()
|
||||
' End Sub
|
||||
|
||||
Public Sub Dispose() Implements IDisposable.Dispose
|
||||
' Do not change this code. Put cleanup code in 'Dispose(disposing As Boolean)' method
|
||||
Dispose(disposing:=True)
|
||||
GC.SuppressFinalize(Me)
|
||||
End Sub
|
||||
End Class
|
||||
@@ -0,0 +1,16 @@
|
||||
Imports CefSharp
|
||||
|
||||
Public Class ResourceHandlerFactory
|
||||
Implements IResourceRequestHandlerFactory
|
||||
|
||||
Public ReadOnly Property HasHandlers As Boolean Implements IResourceRequestHandlerFactory.HasHandlers
|
||||
Get
|
||||
Return True
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public Function GetResourceRequestHandler(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest, isNavigation As Boolean, isDownload As Boolean, requestInitiator As String, ByRef disableDefaultHandling As Boolean) As IResourceRequestHandler Implements IResourceRequestHandlerFactory.GetResourceRequestHandler
|
||||
Return New ResourceRequestHandler
|
||||
End Function
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,67 @@
|
||||
Imports System.IO
|
||||
Imports CefSharp
|
||||
Imports CefSharp.Callback
|
||||
|
||||
Public Class ResourceRequestHandler
|
||||
Implements IResourceRequestHandler
|
||||
|
||||
Private disposedValue As Boolean
|
||||
|
||||
Public Sub OnResourceRedirect(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest, response As IResponse, ByRef newUrl As String) Implements IResourceRequestHandler.OnResourceRedirect
|
||||
Throw New NotImplementedException()
|
||||
End Sub
|
||||
|
||||
Public Sub OnResourceLoadComplete(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest, response As IResponse, status As UrlRequestStatus, receivedContentLength As Long) Implements IResourceRequestHandler.OnResourceLoadComplete
|
||||
|
||||
End Sub
|
||||
|
||||
Public Function GetCookieAccessFilter(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest) As ICookieAccessFilter Implements IResourceRequestHandler.GetCookieAccessFilter
|
||||
Return Nothing
|
||||
End Function
|
||||
|
||||
Public Function OnBeforeResourceLoad(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest, callback As IRequestCallback) As CefReturnValue Implements IResourceRequestHandler.OnBeforeResourceLoad
|
||||
Return CefReturnValue.Continue
|
||||
End Function
|
||||
|
||||
Public Function GetResourceHandler(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest) As IResourceHandler Implements IResourceRequestHandler.GetResourceHandler
|
||||
Return New ResourceHandler
|
||||
End Function
|
||||
|
||||
Public Function OnResourceResponse(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest, response As IResponse) As Boolean Implements IResourceRequestHandler.OnResourceResponse
|
||||
Return True
|
||||
End Function
|
||||
|
||||
Public Function GetResourceResponseFilter(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest, response As IResponse) As IResponseFilter Implements IResourceRequestHandler.GetResourceResponseFilter
|
||||
Return Nothing
|
||||
End Function
|
||||
|
||||
Public Function OnProtocolExecution(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest) As Boolean Implements IResourceRequestHandler.OnProtocolExecution
|
||||
Throw New NotImplementedException()
|
||||
End Function
|
||||
|
||||
Protected Overridable Sub Dispose(disposing As Boolean)
|
||||
'If Not disposedValue Then
|
||||
' If disposing Then
|
||||
' ' TODO: dispose managed state (managed objects)
|
||||
' End If
|
||||
|
||||
' ' TODO: free unmanaged resources (unmanaged objects) and override finalizer
|
||||
' ' TODO: set large fields to null
|
||||
' disposedValue = True
|
||||
'End If
|
||||
End Sub
|
||||
|
||||
' ' TODO: override finalizer only if 'Dispose(disposing As Boolean)' has code to free unmanaged resources
|
||||
' Protected Overrides Sub Finalize()
|
||||
' ' Do not change this code. Put cleanup code in 'Dispose(disposing As Boolean)' method
|
||||
' Dispose(disposing:=False)
|
||||
' MyBase.Finalize()
|
||||
' End Sub
|
||||
|
||||
Public Sub Dispose() Implements IDisposable.Dispose
|
||||
' Do not change this code. Put cleanup code in 'Dispose(disposing As Boolean)' method
|
||||
Dispose(disposing:=True)
|
||||
GC.SuppressFinalize(Me)
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
Binary file not shown.
@@ -1,4 +1,7 @@
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props" Condition="Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props')" />
|
||||
<Import Project="..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props" Condition="Exists('..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props')" />
|
||||
<Import Project="..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props" Condition="Exists('..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props')" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
@@ -12,6 +15,8 @@
|
||||
<MyType>Custom</MyType>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
@@ -76,6 +81,15 @@
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="CefSharp, Version=109.1.110.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\CefSharp.Common.109.1.110\lib\net452\CefSharp.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CefSharp.Core, Version=109.1.110.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\CefSharp.Common.109.1.110\lib\net452\CefSharp.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CefSharp.Wpf, Version=109.1.110.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\CefSharp.Wpf.109.1.110\lib\net462\CefSharp.Wpf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="EgtUILib, Version=2.4.7.1, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\EgtProg\DllD32\EgtUILib.dll</HintPath>
|
||||
@@ -145,6 +159,13 @@
|
||||
<DependentUpon>DispositionPanelV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DispositionPanel\DispositionPanelVM.vb" />
|
||||
<Compile Include="HelpWnd\HelpWndV.xaml.vb">
|
||||
<DependentUpon>HelpWndV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="HelpWnd\HelpWndVM.vb" />
|
||||
<Compile Include="HelpWnd\ResourceHandler.vb" />
|
||||
<Compile Include="HelpWnd\ResourceRequestHandler.vb" />
|
||||
<Compile Include="HelpWnd\ResourceHandlerFactory.vb" />
|
||||
<Compile Include="ImportExportMachiningPanel\ImportExportMachiningPanelV.xaml.vb">
|
||||
<DependentUpon>ImportExportMachiningPanelV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
@@ -285,6 +306,7 @@
|
||||
<DependentUpon>TFSEditorV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Utility\CurrentMachine.vb" />
|
||||
<Compile Include="Utility\CustomMenuHandler.vb" />
|
||||
<Compile Include="Utility\Dictionary.xaml.vb">
|
||||
<DependentUpon>Dictionary.xaml</DependentUpon>
|
||||
</Compile>
|
||||
@@ -329,6 +351,10 @@
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Include="HelpWnd\HelpWndV.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
</Page>
|
||||
<Page Include="ImportExportMachiningPanel\ImportExportMachiningPanelV.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
@@ -536,17 +562,98 @@
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="Icarus.pdf" />
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
</EmbeddedResource>
|
||||
<Resource Include="Resources\Manual\Icarus.pdf" />
|
||||
<None Include="app.manifest" />
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="packages.config" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\delos.css.map" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\bootstrap-variables.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\color.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\deprecated.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\focus-mixin.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\font.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Bibliographic\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Blog\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\BookingManager\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Chatroom\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Course\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\DataCollection\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Excercise\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Forum\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\LearningModule\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\LearningSequence\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\LTIConsumer\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\MediaPool\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Poll\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Portfolio\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\ScormAicc\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Survey\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Test\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\Wiki\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Modules\WorkspaceFolder\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\multi-line-cap.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\reset.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\screenreader-only-mixins.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Accordion\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Awareness\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Badge\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Block\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Bookmarks\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Calendar\bootstrap-datetimepicker.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Calendar\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Captcha\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Certificate\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Chart\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Container\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\COPage\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\FileUpload\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Form\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Help\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\InfoScreen\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Init\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\LearningHistory\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Like\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Mail\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\MainMenu\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\MediaObjects\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Membership\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Navigation\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\News\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Notes\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Object\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\OnScreenChat\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Preview\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Rating\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Search\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Skill\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Style\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Table\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\Tags\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\TermsOfService\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\AdvancedSelectionList\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Button\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Checklist\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Explorer2\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\GroupedList\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Lightbox\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Modal\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\ProgressBar\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Tabs\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Toolbar\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\UIComponent\Tooltip\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\User\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\Services\WebDAV\delos.less" />
|
||||
<None Include="Resources\Manual\Demo\templates\default\less\variables.less" />
|
||||
<Resource Include="Resources\Fonts\Roboto-Regular.ttf" />
|
||||
<Resource Include="Resources\Fonts\Roboto-Light.ttf" />
|
||||
</ItemGroup>
|
||||
@@ -682,6 +789,26 @@
|
||||
<ItemGroup>
|
||||
<Resource Include="Resources\ProjectManager\Export.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\index.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\buttons.js" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\default.css" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\delos.css" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\delos_cont.css" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\template.xml" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.adm_content.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.buttons.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.error.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.explorer.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.frameset.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.main.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.obj_tbl_rows.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.page_content.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.page_content_bak.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.statusline.html" />
|
||||
<EmbeddedResource Include="Resources\Manual\Demo\templates\default\tpl.table.html" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>IF "$(PlatformName)"=="x86" IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Icarus\IcarusR32.exe
|
||||
@@ -689,4 +816,14 @@ IF "$(PlatformName)"=="x86" IF "$(ConfigurationName)" == "Debug" copy $(TargetPa
|
||||
IF "$(PlatformName)"=="x64" IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Icarus\IcarusR64.exe
|
||||
IF "$(PlatformName)"=="x64" IF "$(ConfigurationName)" == "Debug" copy $(TargetPath) c:\EgtProg\Icarus\IcarusD64.exe</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props'))" />
|
||||
<Error Condition="!Exists('..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props'))" />
|
||||
<Error Condition="!Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props'))" />
|
||||
<Error Condition="!Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets" Condition="Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets')" />
|
||||
</Project>
|
||||
@@ -65,6 +65,12 @@
|
||||
Style="{StaticResource ToolBar_Button}">
|
||||
<Image Source="/Resources/ProjectManager/Options.png" Height="22" />
|
||||
</Button>
|
||||
<Button Command="{Binding Help_Command}"
|
||||
Width="30"
|
||||
ToolTip="{Binding Help_ToolTip}"
|
||||
Style="{StaticResource ToolBar_Button}">
|
||||
<Image Source="/Resources/ProjectManager/Send.png" Height="22" />
|
||||
</Button>
|
||||
<Button Command="{Binding SendFeedbackCommand}"
|
||||
Width="30"
|
||||
ToolTip="{Binding SendFeedbackToolTip}"
|
||||
|
||||
@@ -62,6 +62,7 @@ Public Class ProjManagerVM
|
||||
Private m_cmdImport As ICommand
|
||||
Private m_cmdExport As ICommand
|
||||
Private m_cmdOptions As ICommand
|
||||
Private m_cmdHelp As ICommand
|
||||
Private m_cmdSendFeedback As ICommand
|
||||
|
||||
|
||||
@@ -369,6 +370,32 @@ Public Class ProjManagerVM
|
||||
|
||||
#End Region ' Options
|
||||
|
||||
#Region "Help"
|
||||
|
||||
''' <summary>
|
||||
''' Returns a command that do Export.
|
||||
''' </summary>
|
||||
Public ReadOnly Property Help_Command As ICommand
|
||||
Get
|
||||
If m_cmdHelp Is Nothing Then
|
||||
m_cmdHelp = New Command(AddressOf Help)
|
||||
End If
|
||||
Return m_cmdHelp
|
||||
End Get
|
||||
End Property
|
||||
|
||||
''' <summary>
|
||||
''' Execute the Export. This method is invoked by the ExportCommand.
|
||||
''' </summary>
|
||||
Public Sub Help(ByVal param As Object)
|
||||
Dim HelpWndVM As New HelpWndVM
|
||||
Dim HelpWnd As New HelpWndV(Application.Current.MainWindow, HelpWndVM)
|
||||
HelpWndVM.LoadHtml()
|
||||
HelpWnd.Show()
|
||||
End Sub
|
||||
|
||||
#End Region ' Options
|
||||
|
||||
#Region "SendFeedback"
|
||||
|
||||
''' <summary>
|
||||
|
||||
@@ -0,0 +1,756 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3ee8fc11_16169935">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3ee8eec1_02866511" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8bde1_21601243" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8d032_66480549" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8da99_86768276" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8e338_93719743" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8cc75_65077243" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8d760_20444139" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8e042_86747960" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8e8c4_76302667" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8f502_37883999" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- html5 main-tag is not supported in IE / div is needed -->
|
||||
<main class="il-layout-page-content">
|
||||
<div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="mainspacekeeper" class="container-fluid ">
|
||||
<div class="row" style="position: relative;">
|
||||
|
||||
<div id="fixed_content" class=" ilContentFixed" >
|
||||
<div id="mainscrolldiv" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_after_tabs">SubTabs</a></h2>
|
||||
<ul id="ilSubTab" class="ilSubTab nav nav-pills hidden-print">
|
||||
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_sub_tabs" name="after_sub_tabs"></a></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="container-fluid" id="ilContentContainer">
|
||||
<div class="row">
|
||||
|
||||
<div id="il_center_col" class="col-sm-12">
|
||||
|
||||
|
||||
<div id="ilLMPageContent" class="ilc_page_frame_PageFrame">
|
||||
|
||||
|
||||
<div class="ilc_page_tnav_TopNavigation">
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_302.html" >
|
||||
Import Part
|
||||
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" /></a>
|
||||
</div>
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_cont_PageContainer">
|
||||
<span class="ilAccHidden">
|
||||
<a name="il_lm_head" id="il_lm_head"></a></span>
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
<!--
|
||||
focus();
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Introduction</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard"><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Icarus is the Slicing & Printing software made by Egalware for the Large Additive Manufacturing.</span><br/><br/>In the picture below you can see the interface, which we will explain step by step in this documentation.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1180/Intro_1_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1178/Intro_2_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214" alt=""/></div><figcaption style=" 					display: table-caption; caption-side: bottom; 				"><div class="ilc_media_caption_MediaCaption"/></figcaption></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">By clicking the upper left icon will appear a window containing all the software and system information. As showed in the below picture, It is used to check the installed version and the hardware build currently running the software.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1179/Intro_3_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">If any support or assistance is needed, it is important to copy and transmit the information contained in the box so the technicians can have more information possible regarding the specific installation.<!--Break--></div><div style="clear:both;"><!--Break--></div><div class='il-copg-mob-fullscreen-modal'><div class="modal fade il-modal-roundtrip" tabindex="-1" role="dialog" id="il_ui_fw_63d0ff3ee6cf42_26035047">
|
||||
<div class="modal-dialog" role="document" data-replace-marker="component">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<span class="modal-title">Full Screen</span>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
||||
<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen-lm-296'></iframe>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
|
||||
<button class="btn btn-default" data-dismiss="modal" aria-label="Close">Cancel</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div></div><script>$(function () { il.COPagePres.setFullscreenModalShowSignal('il_signal_63d0ff3ee6c929_32677666', '-lm-296'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_302.html" >
|
||||
Import Part
|
||||
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" /></a>
|
||||
</div>
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
</div>
|
||||
<!--</div>-->
|
||||
<br />
|
||||
|
||||
<br />
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div id="minheight"></div>-->
|
||||
<!--<footer id="ilFooter" class="ilFooter hidden-print"><div class="container-fluid ilContainerWidth">-->
|
||||
<!--<div class="row"><div class="ilFooterContainer form-inline"> </div></div></div></footer>-->
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<footer role="contentinfo">
|
||||
<div class="il-maincontrols-footer">
|
||||
<div class="il-footer-content">
|
||||
|
||||
|
||||
|
||||
<div class="il-footer-text">
|
||||
powered by ILIAS (v7.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
|
||||
il.Util.addOnLoad(function() {
|
||||
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink'); } catch (e) { console.log(e); }
|
||||
try {
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews(); } catch (e) { console.log(e); }
|
||||
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink'); } catch (e) { console.log(e); }
|
||||
try { $(document).on('il_signal_63d0ff3ee6c929_32677666', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3ee6cf42_26035047', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3ee6cf42_26035047"}, signalData); return false; });$(document).on('il_signal_63d0ff3ee6c957_55686158', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3ee6cf42_26035047'); return false; });$(document).on('il_signal_63d0ff3ee6c961_85702413', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3ee6cf42_26035047', signalData);}); } catch (e) { console.log(e); }
|
||||
try { } catch (e) { console.log(e); }
|
||||
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink'); } catch (e) { console.log(e); }
|
||||
try {
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews(); } catch (e) { console.log(e); }
|
||||
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink'); } catch (e) { console.log(e); }
|
||||
try { OSDNotifier = OSDNotifications({
|
||||
closeHtml: "<a class=\"glyph\" aria-label=\"Close\">\n<span class=\"glyphicon\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n glyphicon-remove\n\n\n\n\n\n\n\n\n\n\n\n\" aria-hidden=\"true\"><\/span>\n\n\n\n\n\n\n\n<\/a>\n",
|
||||
initialNotifications: [],
|
||||
pollingIntervall: 60,
|
||||
playSound: false
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { } catch (e) { console.log(e); }
|
||||
try {
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'triggerer', 'il_ui_fw_63d0ff3ee8bde1_21601243', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8bde1_21601243').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8b9e3_29047317',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8b9e3_29047317', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"entry_id":"0:0","action":"trigger"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee8b8e4_93013623', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});$(document).on('il_signal_63d0ff3ee8b900_13774526', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});$(document).on('il_signal_63d0ff3ee8b912_62996210', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3ee8cc75_65077243'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3ee8d032_66480549', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8d032_66480549').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8cd81_34583329',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8cd81_34583329', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"entry_id":"T:0","action":"trigger"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { } catch (e) { console.log(e); }
|
||||
try {
|
||||
$('body').on('il-lm-show-glossary-slate', function(){
|
||||
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88362_35062860', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});$(document).on('il_signal_63d0ff3ee88379_77427782', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});$(document).on('il_signal_63d0ff3ee88385_05609071', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3ee8d760_20444139'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3ee8da99_86768276', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8da99_86768276').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8d839_23892402',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8d839_23892402', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"entry_id":"T:1","action":"trigger"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { } catch (e) { console.log(e); }
|
||||
try {
|
||||
$('body').on('il-lm-show-media-slate', function(){
|
||||
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88429_11615188', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});$(document).on('il_signal_63d0ff3ee88437_65731093', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});$(document).on('il_signal_63d0ff3ee88445_18150113', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3ee8e042_86747960'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3ee8e338_93719743', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8e338_93719743').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8e104_43928242',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8e104_43928242', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"entry_id":"T:2","action":"trigger"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { } catch (e) { console.log(e); }
|
||||
try {
|
||||
$('body').on('il-lm-show-faq-slate', function(){
|
||||
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88495_44010459', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});$(document).on('il_signal_63d0ff3ee884a9_43104840', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});$(document).on('il_signal_63d0ff3ee884b3_81778817', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3ee8e8c4_76302667'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ee8eec1_02866511').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee88541_20400653',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee88541_20400653', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ee8f502_37883999').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee88532_08990916',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee88532_08990916', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"disengage_all"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee88532_08990916');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee88541_20400653');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886b3_57690902');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886d0_94616127');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886e8_48363734');
|
||||
window.addEventListener('resize', il.UI.maincontrols.mainbar.adjustToScreenSize);
|
||||
il.UI.maincontrols.mainbar.init('');
|
||||
} catch (e) { console.log(e); }
|
||||
try { } catch (e) { console.log(e); }
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,56 @@
|
||||
if (document.images)
|
||||
{
|
||||
var path = "./templates/default/images/navbar/";
|
||||
|
||||
imag = new Array();
|
||||
imag[0] = path + "desk.gif";
|
||||
imag[1] = path + "course.gif";
|
||||
imag[2] = path + "bookma.gif";
|
||||
imag[3] = path + "search.gif";
|
||||
imag[4] = path + "literat.gif";
|
||||
imag[5] = path + "mail.gif";
|
||||
imag[6] = path + "newsgr.gif";
|
||||
imag[7] = path + "groups.gif";
|
||||
imag[8] = path + "help.gif";
|
||||
imag[9] = path + "feedb.gif";
|
||||
imag[10] = path + "logout.gif";
|
||||
imag[11] = path + "desk_o.gif";
|
||||
imag[12] = path + "course_o.gif";
|
||||
imag[13] = path + "bookma_o.gif";
|
||||
imag[14] = path + "search_o.gif";
|
||||
imag[15] = path + "literat_o.gif";
|
||||
imag[16] = path + "mail_o.gif";
|
||||
imag[17] = path + "newsgr_o.gif";
|
||||
imag[18] = path + "groups_o.gif";
|
||||
imag[19] = path + "help_o.gif";
|
||||
imag[20] = path + "feedb_o.gif";
|
||||
imag[21] = path + "logout_o.gif";
|
||||
imag[22] = path + "login.gif";
|
||||
imag[23] = path + "login_o.gif";
|
||||
imag[24] = path + "editor.gif";
|
||||
imag[25] = path + "editor_o.gif";
|
||||
imag[26] = path + "admin.gif";
|
||||
imag[27] = path + "admin_o.gif";
|
||||
imag[28] = path + "termin.gif";
|
||||
imag[29] = path + "termin_o.gif";
|
||||
|
||||
im = new Array();
|
||||
|
||||
for (var i = 0; i < imag.length; i++)
|
||||
{
|
||||
im[i] = new Image();
|
||||
im[i].src = imag[i];
|
||||
}
|
||||
|
||||
function swtch(num,imgname)
|
||||
{
|
||||
imgname.src = im[num].src;
|
||||
window.status = '';
|
||||
}
|
||||
|
||||
function swtchon(num,imgname,text)
|
||||
{
|
||||
imgname.src = im[num].src;
|
||||
window.status = text;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,335 @@
|
||||
body {
|
||||
color: #222;
|
||||
background-color: #ddd;
|
||||
font-family: Verdana,Arial,Helvetica,sans-serif;
|
||||
font-size: 13px;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
td {
|
||||
font-size:13px;
|
||||
}
|
||||
|
||||
.btnbar {
|
||||
background-color: #069;
|
||||
}
|
||||
|
||||
input, textarea {
|
||||
font-family: Verdana,Arial,Helvetica,sans-serif;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
a.menu:link, a.menu:visited {
|
||||
color: #a0c0ff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a.menu:hover {
|
||||
color: #f90;
|
||||
}
|
||||
|
||||
span.il_menu {
|
||||
color: #f7f7f7;
|
||||
}
|
||||
|
||||
/* ---------------- alternating tablerowcolors ----------------- */
|
||||
|
||||
.tblrow2 {
|
||||
color: #222;
|
||||
background-color: white;
|
||||
font-size: 13px;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.tblrow1 {
|
||||
color: #222;
|
||||
background-color: white;
|
||||
font-size: 13px;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
/* -------------------- table formatting ------------------ */
|
||||
|
||||
table.std {
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
||||
table.fullwidth {
|
||||
width: 100%;
|
||||
border-spacing:1px;
|
||||
}
|
||||
|
||||
table.fullwidth_invisible {
|
||||
width: 100%;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
td.std {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.tbltitle {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
background-color: #069;
|
||||
}
|
||||
|
||||
.tblheader {
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
background-color: #667;
|
||||
}
|
||||
|
||||
.tblfooter {
|
||||
color: white;
|
||||
background-color: #667;
|
||||
}
|
||||
|
||||
td.option {
|
||||
padding: 3px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
td.option_value {
|
||||
padding: 3px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
td.submit {
|
||||
background-color: #d0d0d0;
|
||||
color: #222;
|
||||
padding: 4px;
|
||||
font-size: 13px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* must reset all values of td style */
|
||||
td.il_no_style {
|
||||
font-size: normal;
|
||||
font-weight: normal;
|
||||
background-image: none;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* locator */
|
||||
|
||||
div.locator {
|
||||
padding: 2px 5px;
|
||||
font-size: 13px;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
background-color: #ddd;
|
||||
border: 2px solid #606060;
|
||||
}
|
||||
|
||||
|
||||
/* ---------------- headlines ------------------ */
|
||||
|
||||
h1 {
|
||||
font-size: 16px;
|
||||
color: #222;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
/* ----------------- invisible border ------------- */
|
||||
div.top_border {
|
||||
margin: 0;
|
||||
padding: 10px 15px 5px;
|
||||
background-color: black;
|
||||
}
|
||||
div.invisible_border {
|
||||
margin: 12px 15px;
|
||||
}
|
||||
|
||||
div.il_Footer {
|
||||
margin-top: 30px;
|
||||
margin-bottom: 10px;
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* ----------------- alternative text styles ------------- */
|
||||
.small {
|
||||
text-decoration: none;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.smallgreen {
|
||||
text-decoration: none;
|
||||
font-size: 11px;
|
||||
color: green;
|
||||
}
|
||||
|
||||
.smallred {
|
||||
text-decoration: none;
|
||||
font-size: 11px;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.warning {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.asterisk {
|
||||
color: red;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.default {
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.quote {
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.moderator_small {
|
||||
text-decoration: none;
|
||||
font-size: 11px;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.moderator {
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* ----------------- normal links ------------- */
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #06f;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #06f;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color:#06f;
|
||||
}
|
||||
|
||||
/* ------------------- mail links ----------- */
|
||||
a.mailread
|
||||
{
|
||||
font-weight: normal;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a.mailunread
|
||||
{
|
||||
color: blue;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* ------------------ buttons -------------- */
|
||||
|
||||
.btn {
|
||||
background-color: #069;
|
||||
color: white;
|
||||
}
|
||||
|
||||
a.btn {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
a.tblheader:visited, a.tblheader:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
a.tblfooter:visited, a.tblfooter:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
a.btn:visited {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
a.btn:hover {
|
||||
color: #eef;
|
||||
}
|
||||
|
||||
.message {
|
||||
color: #d00;
|
||||
line-height: 25px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* ------------------ tabs -------------- */
|
||||
.tab {
|
||||
font-size: 11px;
|
||||
color: black;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.tabactive {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
.tabinactive {
|
||||
background-color: #c5c5c5;
|
||||
}
|
||||
|
||||
/* --- to prevent tab-images from spacing when using DOCTYPE xhtml --- */
|
||||
img.imgtab {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* ------------------ content window body tag (not used yet) -------------- */
|
||||
.content {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* --- Editor styles ---*/
|
||||
div.il_editarea {
|
||||
border-style: dotted;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
|
||||
/* ------------------ blind image - spacer gif --------------
|
||||
please use this style class always when using this blind image */
|
||||
img.spacer {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* ------------------ visually distinguishable numeric input fields --------------
|
||||
Styles related to https://mantis.ilias.de/view.php?id=26494
|
||||
*/
|
||||
.ilcqinput_NumericInput {
|
||||
background: #E0FAFA;
|
||||
}
|
||||
|
||||
.ilcqinput_NumericInput+span:after {
|
||||
content: " (!) ";
|
||||
color: green;
|
||||
}
|
||||
|
||||
.ilcqinput_NumericInputInvalid {
|
||||
background: red;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,76 @@
|
||||
table {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 140%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 130%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 120%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 115%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h5 {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 110%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h6 {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 105%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border: 0 none;
|
||||
}
|
||||
|
||||
span.latex {
|
||||
color: green;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.framed {
|
||||
border: 1px solid #9eadba;
|
||||
padding: 0 10px;
|
||||
background-color: white;
|
||||
background-image: url(images/FramedBack.png);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
/* Modules/Bibliographic */
|
||||
|
||||
span.bibl_text_inline_Emph {
|
||||
font-style: italic;
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
/* Modules/Blog */
|
||||
|
||||
div.ilBlogList {
|
||||
padding: 10px;
|
||||
margin-bottom: 20px;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
div.ilBlogListItem {
|
||||
padding: 1px 1px 5px;
|
||||
margin-bottom: 35px;
|
||||
&.ilBlogListItemDraft {
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilBlogListItemTitle {
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
}
|
||||
|
||||
div.ilBlogListItemTitle h3 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
div.ilBlogListItemSubTitle {
|
||||
margin-top: 5px;
|
||||
color: @il-text-light-color;
|
||||
font-size: 80%;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.ilBlogListItemSnippet {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
min-height: 10px;
|
||||
}
|
||||
|
||||
img.ilBlogListItemSnippetPreviewImage {
|
||||
margin-right: 10px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
div.ilBlogListItemMore {
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.ilBlogListItemCommtensPerma {
|
||||
text-align: right;
|
||||
font-size: 90%;
|
||||
margin-top: 15px;
|
||||
min-height: 15px;
|
||||
}
|
||||
|
||||
td.ilBlogSideBlockContent {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
td.ilBlogSideBlockCommand {
|
||||
font-size: 75%;
|
||||
color: @il-text-light-color;
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
padding: 1px 3px;
|
||||
background-color: @il-main-dark-bg;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.ilBlogSideBlockAuthor {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
ul.ilBlogSideBlockNavigation {
|
||||
margin-top: 3px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
div.ilBlogSideBlockNavigationSelection {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.ilBlogListItemDraft {
|
||||
border: 2px dotted @brand-warning;
|
||||
}
|
||||
|
||||
.ilBlogDraftText {
|
||||
color: @brand-warning;
|
||||
position: absolute;
|
||||
font-size: @font-size-small;
|
||||
margin-top: -19px;
|
||||
padding: 2px 5px;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
.ilBlogNavigationItemDraft {
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.ilBlogListPermalink {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.ilBlogRating {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.ilTopGap {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.ilExportPage {
|
||||
min-height: 468px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
/* Modules/BookingManager */
|
||||
|
||||
.ilTextinfo {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@@ -0,0 +1,133 @@
|
||||
/* Modules/Chatroom */
|
||||
|
||||
.ilValignBottom {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
#chat_actions {
|
||||
white-space: nowrap;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#chat_messages {
|
||||
height: 300px;
|
||||
padding: 2px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-all;
|
||||
word-break: break-word;
|
||||
-ms-hyphens: auto;
|
||||
-moz-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
width: 100%;
|
||||
min-height: 200px;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
#chat_users {
|
||||
overflow: auto;
|
||||
height: 100%;
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
#private_rooms {
|
||||
z-index: 200;
|
||||
display: none;
|
||||
}
|
||||
|
||||
td.chatroom {
|
||||
width: 200px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.ilChatroomUser {
|
||||
border-bottom: 1px solid #e9e9e9;
|
||||
|
||||
.media-body {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.media-body {
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
||||
.media-body h4, .media-body p {
|
||||
color: #a0a0a0;
|
||||
font-size: 12px;
|
||||
padding: 5px 3px 0 3px;
|
||||
line-height: 1em;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.media-body h4 {
|
||||
padding-top: 0;
|
||||
color: #606060;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
background-color: #f0f0f0;
|
||||
padding: 10px 0;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.dropdown-menu a {
|
||||
color: #606060;
|
||||
}
|
||||
|
||||
.dropdown-menu a:hover {
|
||||
color: #202020;
|
||||
}
|
||||
|
||||
.arrow-down {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 11px solid transparent;
|
||||
border-right: 11px solid transparent;
|
||||
border-top: 11px solid white;
|
||||
margin-top: -10px;
|
||||
margin-left: 100px;
|
||||
}
|
||||
|
||||
.media:hover {
|
||||
background-color: #fea;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
position: static;
|
||||
float: none;
|
||||
.box-shadow(none);
|
||||
}
|
||||
|
||||
.dropdown-backdrop {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.media {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.media-left img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.media-body, .media-left, .media-right {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.media-left {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.media {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
/* Modules/Course */
|
||||
|
||||
.ilValignTop {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.halfWidth {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.ilInheritBGColor {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
td.option_value_details {
|
||||
background: none white;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
}
|
||||
td.option_value_center_details {
|
||||
background: none #ffe4e4;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
ul.noStyle {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
li.smallPad {
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.listIndent {
|
||||
padding: 0 0 20px;
|
||||
}
|
||||
|
||||
.ilCrsObjAcc {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.ilCourseObjectiveAccResults {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
|
||||
.ilCourseObjectiveAccResult {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveAccSummary {
|
||||
font-size: 120%;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarContainer .text-comparision {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarContainer {
|
||||
float: right;
|
||||
max-width: 200px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
|
||||
/* LOK progress bars */
|
||||
|
||||
.ilCourseObjectiveProgressBar {
|
||||
padding-right: 5px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarContainer > .progress {
|
||||
margin: 5px 0 0;
|
||||
border: 1px solid #bbb;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarContainer > .progress > .progress-bar {
|
||||
.box-shadow(none);
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarLimit {
|
||||
float: right;
|
||||
position: relative;
|
||||
border-right: 2px dotted #888;
|
||||
height: 20px;
|
||||
margin-top: -17px;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarNeutral {
|
||||
background-color: #888;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarCompleted {
|
||||
background-color: #60b060;
|
||||
}
|
||||
|
||||
.ilCourseObjectiveProgressBarFailed {
|
||||
background-color: #b06060;
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
/* Modules/DataCollection */
|
||||
|
||||
td.dcl_actions {
|
||||
text-align: right;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.dcl_record_list td, .dcl_field_list td {
|
||||
padding: 10px 7px;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.ilDclTableDescription {
|
||||
padding: 15px 0;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.ilDclRecordViewNavWrapper {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.ilDclRecordViewNav {
|
||||
font-weight: normal;
|
||||
padding: 3px;
|
||||
font-size: 80%;
|
||||
width: 80%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ilDclEditRecordButtonWrapper {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ilDclRecordViewRecordOfTotal {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.ilDclSelectRecord {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.ilDclChangeRecord {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.ilDclPermanentLinkWrapper {
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
tr.dcl_comments_active > td {
|
||||
background-color: #ffffd9;
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
/* Modules/Excercise */
|
||||
|
||||
.ilExcAssignmentBody {
|
||||
padding: 20px;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
.ilExcAssignmentHead img {
|
||||
display: block;
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.ilExcAssignmentHead .ilAssignmentHeader {
|
||||
padding: 0;
|
||||
margin: 1px 0 0 25px;
|
||||
font-size: floor(@font-size-base*1.2);
|
||||
}
|
||||
|
||||
.ilExcAssignmentHead, .ilAssignmentHeader {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ilExAssignmentHeadProperty {
|
||||
margin: 4px 0 0 25px;
|
||||
font-size: floor(@font-size-base*0.9);
|
||||
}
|
||||
|
||||
.ilExcOverview .ilExcAssImageContainer {
|
||||
max-width: 300px;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
}
|
||||
.ilExcReportFeedback{
|
||||
background-color:@il-main-dark-bg;
|
||||
padding:9px;
|
||||
}
|
||||
|
||||
.ilExcAssignmentInfoTool {
|
||||
padding: 10px;
|
||||
h4 {
|
||||
padding-left:0px;
|
||||
padding-right:0px;
|
||||
}
|
||||
p {
|
||||
padding: 0px;
|
||||
}
|
||||
ul {
|
||||
padding-left: 30px;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,189 @@
|
||||
/* Modules/Forum */
|
||||
|
||||
a.postread, a.postread:visited {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
a.postunread, a.postunread:visited {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a.postnew, a.postnew:visited {
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
blockquote.ilForumQuote {
|
||||
margin: 0 20px 10px;
|
||||
padding: 5px;
|
||||
border: 1px solid #b6b6b6;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
div.ilForumQuoteHead {
|
||||
font-weight: bold;
|
||||
font-size: 90%;
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
|
||||
/* Modules/Forum */
|
||||
#ilFrmPostList {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
.ilFrmPostImage {
|
||||
float: left;
|
||||
width: 100px;
|
||||
overflow: hidden;
|
||||
img {
|
||||
vertical-align: top;
|
||||
margin: 5px 20px 5px 5px;
|
||||
border: none;
|
||||
max-width: 100%;
|
||||
@media only screen and (min-width: @grid-float-breakpoint) {
|
||||
margin: 0 !important;
|
||||
padding: 5px 8px 5px 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ilFrmPostClear {
|
||||
clear: both;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
line-height: 1px;
|
||||
}
|
||||
|
||||
.ilFrmPostTitle {
|
||||
margin-top: 15px;
|
||||
font-size: 120%;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin-top: 5px;
|
||||
font-size: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilFrmPostHeader span.small {
|
||||
color: @il-text-light-color;
|
||||
}
|
||||
|
||||
.ilFrmPostContentContainer {
|
||||
margin: 0 0 10px;
|
||||
width: 80%;
|
||||
float: left;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 100%;
|
||||
}
|
||||
img {
|
||||
@media only screen {
|
||||
width: 100%;
|
||||
height: auto !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ilFrmPostContent {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.ilFrmPostRow {
|
||||
padding: 3px;
|
||||
border-top: 1px solid #f0f0f0;
|
||||
div.ilForm {
|
||||
width: 100%;
|
||||
max-width: 1000px;
|
||||
div.ilFormValue {
|
||||
width: auto;
|
||||
}
|
||||
div.ilFormOption {
|
||||
width: 150px;
|
||||
}
|
||||
&, input[type=text], textarea {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
img.ilUserIcon {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: @screen-lg-desktop) {
|
||||
.sort_by_posts .ilFrmPostRow {
|
||||
&.ilFrmPost-level-2 {
|
||||
padding-left: 50px;
|
||||
}
|
||||
&.ilFrmPost-level-3 {
|
||||
padding-left: 100px;
|
||||
}
|
||||
&.ilFrmPost-level-4 {
|
||||
padding-left: 150px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ilFrmPostCensorshipAdvice {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ilFrmPostAttachmentsContainer {
|
||||
margin: 20px 0 0;
|
||||
font-weight: bold;
|
||||
a {
|
||||
font-weight: normal;
|
||||
}
|
||||
img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.ilFrmPostCommands {
|
||||
float: right;
|
||||
margin: 0 0 3px;
|
||||
}
|
||||
|
||||
.ilModeratorPosting {
|
||||
background-color: @il-posting-by-moderator-bg;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.ilPostingNeedsActivation {
|
||||
background-color: @il-posting-needs-moderation-bg;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.ilFrmBottomToolbar {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.ilForumTreeTitle {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.ilForumTreeTitleUnread {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ilForumTreeUnlinkedContent {
|
||||
display: block;
|
||||
line-height: 0.9em;
|
||||
margin-bottom: 10px;
|
||||
text-decoration: none;
|
||||
cursor: text;
|
||||
font-size: smaller;
|
||||
color: @il-text-color;
|
||||
padding-left: 23px;
|
||||
}
|
||||
|
||||
.frm-thread-scrollable-print {
|
||||
overflow: auto;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/* BEGIN LTIConsumer */
|
||||
|
||||
@lti-iframe-width: 100%;
|
||||
@lti-iframe-height: 500px;
|
||||
|
||||
@lti-iframe-border-color: #7c7c7c;
|
||||
@lti-iframe-border-width: 2px;
|
||||
|
||||
@lti-iframe-padding: 3px;
|
||||
|
||||
#ltiLoadingAnimation {
|
||||
padding-top: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
#ltiIframe {
|
||||
border: solid @lti-iframe-border-color @lti-iframe-border-width !important;
|
||||
padding: @lti-iframe-padding;
|
||||
width: @lti-iframe-width;
|
||||
height: @lti-iframe-height;
|
||||
}
|
||||
/* END LTIConsumer */
|
||||
+115
@@ -0,0 +1,115 @@
|
||||
/* Modules/LearningModule */
|
||||
|
||||
.ilLMMenu {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
body.ilLMNoMenu .ilFixedTopSpacer {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
body.ilLMNoMenu .ilLeftNav {
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
button.ilAreaClose {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.ilRightAreaSpace {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
/* right area (used in learning modules) */
|
||||
div#right_area {
|
||||
bottom: 0;
|
||||
width: 50%;
|
||||
right: 0px;
|
||||
top: @il-header-height;
|
||||
position: fixed;
|
||||
/* padding: 5px; */
|
||||
background-color: #f5f5f5;
|
||||
border-left: 3px solid #e9e9e9;
|
||||
/* box-shadow: inset 0px 2px 2px #d0d0d0; */
|
||||
-webkit-overflow-scrolling: touch; /* Bug 11209 */
|
||||
overflow: hidden; /* Bug 11209 */
|
||||
}
|
||||
|
||||
div#right_area iframe {
|
||||
-webkit-overflow-scrolling: touch; /* Bug 11209 */
|
||||
overflow: auto; /* Bug 11209 */
|
||||
border: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
div#right_cont_area {
|
||||
bottom: 0;
|
||||
width: 50%;
|
||||
right: 0px;
|
||||
top: @il-header-height;
|
||||
position: fixed;
|
||||
background-color: transparent;
|
||||
border-left: 3px solid @il-main-border-color;
|
||||
-webkit-overflow-scrolling: touch; /* Bug 11209 */
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#right_top_area {
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
border-bottom: 3px solid #e9e9e9;
|
||||
border-right: 3px solid #e9e9e9;
|
||||
-webkit-overflow-scrolling: touch; /* Bug 11209 */
|
||||
overflow: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
div.ilRightContAreaSplit div#right_top_area {
|
||||
height: 50%;
|
||||
}
|
||||
|
||||
div#right_top_area iframe {
|
||||
-webkit-overflow-scrolling: touch; /* Bug 11209 */
|
||||
overflow: auto; /* Bug 11209 */
|
||||
border: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
div#right_bottom_area {
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
-webkit-overflow-scrolling: touch; /* Bug 11209 */
|
||||
overflow: hidden;
|
||||
display: none;
|
||||
border-right: 3px solid #e9e9e9;
|
||||
}
|
||||
|
||||
div.ilRightContAreaSplit div#right_bottom_area {
|
||||
top: 50%;
|
||||
height: 50%;
|
||||
}
|
||||
|
||||
|
||||
div#right_bottom_area iframe {
|
||||
-webkit-overflow-scrolling: touch; /* Bug 11209 */
|
||||
overflow: auto; /* Bug 11209 */
|
||||
border: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#il_expl2_jstree_cont_out_ilLMProgressTree img {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
@lso-dark-bg: @il-main-dark-bg;
|
||||
|
||||
.ilLSOLearnerView { /*ILIAS-GUI, "startpage" of LSO*/
|
||||
|
||||
.il-workflow-step-label,
|
||||
.il-workflow-step-label .btn {
|
||||
color: @text-color !important;
|
||||
cursor: default !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.ilLSOKioskModeObjectHeader {
|
||||
.il_HeaderInner{
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
}
|
||||
.ilLSOKioskModeNavigation {
|
||||
margin-bottom: 10px;
|
||||
background-color: @lso-dark-bg;
|
||||
.navbar-form {
|
||||
line-height: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilLSOKioskModeContent {
|
||||
.panel-primary {
|
||||
.panel-heading {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/* Modules/MediaPool */
|
||||
|
||||
#ilMepPreviewContent {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ilMediaPoolPagePreviewBody {
|
||||
background-color: @il-main-dark-bg;
|
||||
height: auto;
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
/* Modules/Poll */
|
||||
|
||||
.ilPollDescription {
|
||||
margin: 5px;
|
||||
font-size: 80%;
|
||||
color: @il-text-light-color;
|
||||
}
|
||||
|
||||
.ilPollQuestion {
|
||||
display: inline-block;
|
||||
width: 97%;
|
||||
margin: 1.5%;
|
||||
font-size: 90%;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
img.ilPollQuestionImage {
|
||||
margin: 1.5% 0%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.ilPollQuestionAnswers {
|
||||
margin: 5px;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.ilPollQuestionAnswer {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.ilPollQuestionResults {
|
||||
margin: 10px;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.ilPollQuestionResult {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.ilPollQuestionResultBar {
|
||||
width: 100%;
|
||||
border: 1px solid @il-main-border-dark-color;
|
||||
float: left;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.ilPollQuestionResultBarInner {
|
||||
background-color: #c2e1ff;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.ilPollQuestionResultPerc {
|
||||
float: right;
|
||||
position: relative;
|
||||
margin-top: -17px;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.ilPollLegend {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.ilPollLegend td.legendLabel {
|
||||
font-size: 120%;
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
/* Modules/Portfolio */
|
||||
|
||||
ul.ilPCMyCoursesCourseList > li {
|
||||
margin-bottom: 10px;
|
||||
.course-list-tree-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
ul.ilPCMyCoursesObjectiveList > li {
|
||||
margin-top: 5px;
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
a.ilPCMyCoursesToggle {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
div.ilPCMyCoursesPath {
|
||||
margin-bottom: 10px;
|
||||
font-size: 90%;
|
||||
/* font-style: italic; */
|
||||
}
|
||||
|
||||
div.ilPrtfSignature
|
||||
{
|
||||
margin-top: 60px;
|
||||
border-top: 1px solid black;
|
||||
}
|
||||
|
||||
.ilPrtfMetaInfo {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.ilPrtfMetaInfo td {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.ilPrtfMetaInfo td, .ilPrtfMetaInfo th {
|
||||
padding-top: 5px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
div.ilPrtfToc {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
body.ilPrtfPdfBody {
|
||||
> div.ilInvisibleBorder {
|
||||
padding: 0;
|
||||
padding-left: 40px;
|
||||
}
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body.ilPrtfPdfBody h1.ilc_PrintPageTitle {
|
||||
border-bottom: 1px solid #000000;
|
||||
}
|
||||
|
||||
body.ilPrtfPdfBody .ilPCMyCoursesToggle img {
|
||||
visibility: hidden;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
/* Modules/ScormAicc */
|
||||
|
||||
table.il_ScormTable {
|
||||
color: @il-text-color;
|
||||
background-color: @il-main-dark-bg;
|
||||
border-spacing: 1px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
td.il_ScormTableKey {
|
||||
background-color: @il-main-dark-bg;
|
||||
color: @il-text-color;
|
||||
padding: 1px 3px;
|
||||
vertical-align: top;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
td.il_ScormTableValue {
|
||||
background: none @il-main-dark-bg;
|
||||
color: @il-text-color;
|
||||
padding: 1px 3px;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
div.ilSurveyPageEditDropArea {
|
||||
border-color: lighten(@il-secondary-color, 10%);
|
||||
color: lighten(@il-secondary-color, 10%);
|
||||
background-color: lighten(@il-secondary-color, 25%);
|
||||
}
|
||||
|
||||
div.ilSurveyPageEditDropAreaSelected {
|
||||
border-color: lighten(@il-secondary-color, 10%);
|
||||
color: lighten(@il-secondary-color, 10%);
|
||||
background-color: lighten(@il-secondary-color, 15%);
|
||||
}
|
||||
|
||||
div.ilSurveyPageEditAreaDragging {
|
||||
border: 2px dashed @il-neutral-color;
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
div.ilSurveyPageEditActionMenu {
|
||||
float: right;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
.il-svy-qst-compressed {
|
||||
.questionTitle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
tr:first-child td {
|
||||
visibility: hidden;
|
||||
height: 1px;
|
||||
line-height: 1px;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#il-svy-output-form {
|
||||
table {
|
||||
td p {
|
||||
hyphens: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,673 @@
|
||||
/* former ta.css */
|
||||
|
||||
.kiosk {
|
||||
padding: 2em;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
|
||||
.fullwidth_invisible {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.feedback {
|
||||
/* border: 1px solid gray;*/
|
||||
padding: 4px;
|
||||
display: block;
|
||||
background: #EEEEEE;
|
||||
}
|
||||
|
||||
.centermessage {
|
||||
width: 25em;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
font-weight: bold;
|
||||
font-size: 150%;
|
||||
}
|
||||
|
||||
.col2 {
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.rcol {
|
||||
width: 50%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.lcol {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.participant.solution {
|
||||
padding: 5px;
|
||||
width: 50%;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.lcol.participant
|
||||
{
|
||||
width: 49%;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.rcol.solution {
|
||||
width: 49%;
|
||||
overflow-x: auto;
|
||||
padding: 5px;
|
||||
background: #E2FFC7; /* Fallback IE 6-8 */
|
||||
background: rgba(226, 255, 199, .4);
|
||||
}
|
||||
|
||||
#kioskOptions {
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
border-top: 1px #aaa solid;
|
||||
border-bottom: 1px #aaa solid;
|
||||
margin-bottom: 1em;
|
||||
padding: 1em 0;
|
||||
}
|
||||
|
||||
#kioskTestTitle {
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
#kioskParticipant {
|
||||
float: right;
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.print {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
|
||||
.ilTstWorkingFormBlock_WorkingTime {
|
||||
text-align: center;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.ilTstWorkingFormInfo_UserWorkingTime {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ilTstWorkingFormInfo_ProcessTimeLeft {
|
||||
font-size: 200%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ilTstQuestionSummaryBlock_WorkingTime {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
div.ilc_Question {
|
||||
padding-left: 20px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.testSheet {
|
||||
background: #EEEEEE;
|
||||
border-spacing: 1px;
|
||||
border: 1px outset #BBBBBB;
|
||||
margin: 5px;
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
.questionTitle {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
font-size: 140%;
|
||||
padding-bottom: 3px;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
border-color: #000000;
|
||||
}
|
||||
|
||||
.ilTestQuestionRelatedObjectivesInfo
|
||||
{
|
||||
font-size: 0.7em;
|
||||
font-style: italic;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.questionPrintview {
|
||||
border: 1px solid #C0C0C0;
|
||||
padding: 0.25em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.solutionbox {
|
||||
color: black;
|
||||
background-color: white;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
border-style: inset;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
td.middle {
|
||||
color: #000000;
|
||||
background-color: inherit;
|
||||
border-spacing: 0px;
|
||||
border: none;
|
||||
padding: 3px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
td.top {
|
||||
color: #000000;
|
||||
background-color: inherit;
|
||||
border-spacing: 0px;
|
||||
border: none;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* --- Test tool javascript styles --- */
|
||||
|
||||
span.nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.termtext {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #F1F1F1;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.dropzone {
|
||||
width: 220px;
|
||||
height: 120px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #FFE4E4;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: dotted;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.textboximage {
|
||||
width: 200px;
|
||||
height: 80px;
|
||||
border: 1px solid #000000;
|
||||
background: #DDDDDD;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.imagebox {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #F1F1F1;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
div.textbox {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #F1F1F1;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
#filterpanel {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.filteractive {
|
||||
background-color: #f7face;
|
||||
border: 1px #d48110 solid;
|
||||
}
|
||||
|
||||
.filterinactive {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.manfeedback .toggle-button
|
||||
{
|
||||
padding-left:20px;
|
||||
background:transparent url(images/del_sprite_arrows.gif) 3px -318px no-repeat;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.manfeedback .yes
|
||||
{
|
||||
padding-left:20px;
|
||||
background:transparent url(images/del_sprite_arrows.gif) 3px -359px no-repeat;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.manfeedback .off
|
||||
{
|
||||
padding-left:20px;
|
||||
background:none;
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
div.odd {
|
||||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
div.even {
|
||||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
div.last {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
|
||||
table.imagemapareas tr,
|
||||
table.kvpwizard tr,
|
||||
table.matchingwizard tr,
|
||||
table.matchingpairwizard tr,
|
||||
table.errortextwizard tr,
|
||||
table.singlechoicewizard tr,
|
||||
table.multiplechoicewizard tr {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.imagemapareas th,
|
||||
table.kvpwizard th,
|
||||
table.matchingwizard th,
|
||||
table.matchingpairwizard th,
|
||||
table.errortextwizard th,
|
||||
table.singlechoicewizard th,
|
||||
table.multiplechoicewizard th,
|
||||
table.kprimchoicewizard th
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
table.kprimchoicewizard th.true,
|
||||
table.kprimchoicewizard th.false
|
||||
{
|
||||
padding: 5px 5px;
|
||||
}
|
||||
table.kprimchoicewizard td.correctness
|
||||
{
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
}
|
||||
table.kprimchoicewizard th
|
||||
{
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
table.kprimchoicewizard
|
||||
{
|
||||
}
|
||||
table.kprimchoicewizard
|
||||
{
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
table.kprimchoicewizard td
|
||||
{
|
||||
padding-top: 15px;
|
||||
}
|
||||
div.ilAssKprimChoiceTable div.optionLabel,
|
||||
table.kprimchoicewizard th.optionLabel
|
||||
{
|
||||
background-color: lightgrey;
|
||||
}
|
||||
|
||||
table.ilAssKprimChoiceTable tr.aggregaterow td
|
||||
{
|
||||
border-bottom: solid lightgrey 1px;
|
||||
}
|
||||
table.ilAssKprimChoiceTable tr.aggregaterow td.answer_frequency
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
table.il_tst_answer_aggregation
|
||||
{
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.il_tst_answer_aggregation td,
|
||||
table.il_tst_answer_aggregation th
|
||||
{
|
||||
padding: 5px 15px;
|
||||
}
|
||||
table.il_tst_answer_aggregation th
|
||||
{
|
||||
background-color: lightgrey;
|
||||
}
|
||||
table.il_tst_answer_aggregation td
|
||||
{
|
||||
border-bottom: solid lightgrey 1px;
|
||||
}
|
||||
table.il_tst_answer_aggregation td.answer_option
|
||||
{
|
||||
font-style: italic;
|
||||
}
|
||||
table.il_tst_answer_aggregation td.answer_frequency
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#tst_output {
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#tst_left {
|
||||
float: left;
|
||||
width: 0%;
|
||||
}
|
||||
|
||||
#tst_left h1 {
|
||||
font-size: 110%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#tst_right {
|
||||
float: right;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.question_description {
|
||||
font-style: italic;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
ul.shortlist {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* fau: testNav - icon for answered/unanswered questions in shortlist */
|
||||
ul.shortlist li {
|
||||
padding: 0 0 6px 15px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 10px;
|
||||
background-position: 0px 5px;
|
||||
}
|
||||
|
||||
ul.shortlist li.answered {
|
||||
background-image: url('../../../../templates/default/images/answered.svg');
|
||||
}
|
||||
|
||||
ul.shortlist li.unanswered {
|
||||
background-image: url('../../../../templates/default/images/answered_not.svg');
|
||||
}
|
||||
/* fau. */
|
||||
|
||||
ul.shortlist li.active {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.shortlist li.listEntry a
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#0033AA;
|
||||
}
|
||||
|
||||
ul.shortlist li.listEntry a:hover
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.number {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.errortext a:link,
|
||||
.errortext a:visited {
|
||||
text-decoration: none;
|
||||
color: #000;
|
||||
padding: 0 2px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.errortext a:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
.ilc_qetitem_ErrorTextSelected {
|
||||
background-color: #9bd9fe;
|
||||
border: 1px #666 solid;
|
||||
}
|
||||
.selGroup {
|
||||
border: 2px #9bd9fe solid;
|
||||
padding: 3px 2px;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
|
||||
.imageselection {
|
||||
}
|
||||
|
||||
.questionpool_info {
|
||||
padding: 0.4em;
|
||||
margin-top: 0.4em;
|
||||
}
|
||||
|
||||
.questionpool_title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
td.matching {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div.term {
|
||||
display: inline;
|
||||
padding: 0.5em 1em;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.solutiontable td {
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
span.result {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div.ilc_Page.readonly div.ilc_question_Standard
|
||||
{
|
||||
background-color: #f3f3f3;
|
||||
background-image: url(../../../../templates/default/images/qmark-ro.svg);
|
||||
}
|
||||
|
||||
ul.ilAssQuestionRelatedNavigationContainer,
|
||||
div.ilAssQuestionRelatedNavigationContainer
|
||||
{
|
||||
margin: 15px 0;
|
||||
float: none;
|
||||
}
|
||||
|
||||
ul.ilAssQuestionRelatedNavigationContainer div.navbar
|
||||
{
|
||||
padding-right: 12px;
|
||||
min-height: unset;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div.tstModalConfirmationText
|
||||
{
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
div.tstModalConfirmationButtons a,
|
||||
div.tstModalConfirmationButtons input
|
||||
{
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
div.ilTestOutputBlock_DynTestFinished
|
||||
{
|
||||
background-color: #FAFAFA;
|
||||
padding: 100px;
|
||||
}
|
||||
|
||||
a.il_question_answer_list_back_anchor
|
||||
{
|
||||
float:right;
|
||||
font-size:0.7em;
|
||||
margin-right:3px;
|
||||
}
|
||||
|
||||
.ilCenterForced {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
tr.ilBorderlessRow
|
||||
{
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
td.ilAssQuestSkillAssignQuestTitle div
|
||||
{
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.ilAssQuestionLacExprWizard td,
|
||||
.ilAssQuestionLacExprWizard th
|
||||
{
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
a.il_participant_block_back_anchor,
|
||||
a.il_question_answer_list_back_anchor
|
||||
{
|
||||
float:right;
|
||||
margin-right:3px;
|
||||
}
|
||||
a.il_question_answer_list_back_anchor
|
||||
{
|
||||
font-size:0.7em;
|
||||
}
|
||||
|
||||
.test_specific_feedback td:first-child{
|
||||
padding-right: 1em;
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
}
|
||||
.test_specific_feedback td:last-child p:first-child{
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
p.ilAssKprimInstruction,
|
||||
p.ilAdditionalAssQuestionInstruction
|
||||
{
|
||||
font-style: italic;
|
||||
font-size: 0.9em;
|
||||
margin:5px 0 15px 0 !important;
|
||||
}
|
||||
|
||||
table.kprimchoicewizard th.optionLabel
|
||||
{
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
table.imagemapareas tr.active-area, table.imagemapareas tr.active-area td {
|
||||
background-color: #fdfabb !important;
|
||||
}
|
||||
|
||||
/* fau: testNav - added and changed styles */
|
||||
|
||||
td.ilc_Page {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.ilTestQuestionSubtitleBlocks
|
||||
{
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
.ilTestMarkQuestionIcon {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.ilTestAnswerStatusIcon {
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
|
||||
.ilTestQuestionAction.disabled a {
|
||||
color: #b0b0b0!important;
|
||||
}
|
||||
/* fau. */
|
||||
|
||||
div.ilAssClozeTest
|
||||
{
|
||||
line-height: 2.5em;
|
||||
}
|
||||
div.ilAssClozeTest input
|
||||
{
|
||||
line-height: 1.25em;
|
||||
}
|
||||
|
||||
div.ilc_Page.readonly img.imagemap,
|
||||
div.ilc_Page.readonly div.filesContainer,
|
||||
div.ilc_Page.readonly div.filesContainer a,
|
||||
div.ilc_Page.readonly div.uploadContainer input,
|
||||
div.ilc_Page.readonly div.ilAssErrorText span,
|
||||
div.ilc_Page.readonly input[disabled],
|
||||
div.ilc_Page.readonly select[disabled],
|
||||
div.ilc_Page.readonly textarea[disabled]
|
||||
{
|
||||
pointer-events: all !important;
|
||||
cursor: not-allowed !important;
|
||||
}
|
||||
|
||||
.tstAutosaveMsg
|
||||
{
|
||||
font-style: italic;
|
||||
border: 1px #666 solid;
|
||||
background-color: #ffffe0;
|
||||
position:fixed;
|
||||
z-index:99999999999;
|
||||
top:0;
|
||||
left:0;
|
||||
}
|
||||
|
||||
.textarea {
|
||||
cursor: not-allowed !important;
|
||||
border: 1px solid rgb(169, 169, 169);
|
||||
padding: 2px;
|
||||
background-color: rgb(235, 235, 228);
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.ilSpecificAnswerFeedback td:first-child {
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.ilc_question_MultipleChoice .ilc_qanswer_Answer > div {
|
||||
vertical-align: top;
|
||||
}
|
||||
.ilc_question_SingleChoice .ilc_qanswer_Answer > div {
|
||||
vertical-align: top;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
/* Modules/Wiki */
|
||||
|
||||
a.ilWikiPageMissing:link, a.ilWikiPageMissing:visited {
|
||||
color: @il-danger-color;
|
||||
}
|
||||
|
||||
a.ilWikiPageMissing:hover {
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
|
||||
ul.ilWikiBlockList {
|
||||
margin: 0 0 0 20px;
|
||||
padding: 0;
|
||||
list-style: disc outside;
|
||||
}
|
||||
|
||||
ul.ilWikiBlockListNoIndent {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
li.ilWikiBlockItem {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* see mantis #0027530 */
|
||||
#block_wikiside_0 {
|
||||
.panel-body {
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/* Modules/WorkspaceFolder */
|
||||
|
||||
#tbl_wfld.table-striped > tbody > tr > td {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.ilWspContainerListFooter {
|
||||
background-color: @il-main-dark-bg;
|
||||
margin: 0px -15px -15px -15px;
|
||||
padding: 5px 25px;
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
/* Services/Accordion */
|
||||
|
||||
.il_VAccordionHead, .il_HAccordionHead {
|
||||
padding: @padding-base-horizontal @padding-base-horizontal @padding-base-horizontal (@padding-base-horizontal+30px);
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
color: @link-color;
|
||||
font-size: 110%;
|
||||
background-image: url("@{il-background-images-path}tree_col.svg");
|
||||
background-repeat: no-repeat;
|
||||
background-color: @il-main-dark-bg;
|
||||
background-position: 15px 8px;
|
||||
background-size: 20px 20px;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.il_VAccordionHead {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.il_VAccordionInnerContainer {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.il_VAccordionContent, .il_HAccordionContent {
|
||||
}
|
||||
|
||||
.il_HAccordionHead:hover, .il_VAccordionHead:hover {
|
||||
background-color: @il-highlight-bg;
|
||||
}
|
||||
|
||||
.il_HAccordionHeadActive, .il_VAccordionHeadActive {
|
||||
background-image: url("@{il-background-images-path}tree_exp.svg");
|
||||
background-color: @il-highlight-bg;
|
||||
}
|
||||
|
||||
.ilAccHideContent {
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.il_VAccordionContentDef, .il_HAccordionContentDef {
|
||||
> div {
|
||||
//overflow: auto;
|
||||
//was added for #17978, yet removed for #20719
|
||||
//seems yet useless
|
||||
}
|
||||
}
|
||||
|
||||
div.ilc_va_icont_VAccordICont {
|
||||
overflow: visible !important;
|
||||
}
|
||||
@@ -0,0 +1,207 @@
|
||||
/* Services/Awareness */
|
||||
|
||||
.ilAwarenessDropDown .popover {
|
||||
max-width: 300px;
|
||||
color: @il-text-color;
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
#awareness-list {
|
||||
overflow: auto;
|
||||
.dropdown-header {
|
||||
background-color: @il-main-dark-bg;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilAwarenessDropDown .popover-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ilAwarenessDropDown .media-body, .ilAwarenessDropDown .media-left, .ilAwarenessDropDown .media-right {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
}
|
||||
.ilAwarenessDropDown .media-left {
|
||||
padding-right: 10px;
|
||||
}
|
||||
.ilAwarenessDropDown .media {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#awareness-content {
|
||||
.input-group {
|
||||
display: table;
|
||||
}
|
||||
.media:hover {
|
||||
background-color: @il-highlight-bg;
|
||||
}
|
||||
.glyphicon {
|
||||
font-size: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#awareness-content .dropdown-menu {
|
||||
position: static;
|
||||
float: none;
|
||||
.box-shadow(none);
|
||||
}
|
||||
|
||||
#awareness-content .media {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#awareness-content .media-left img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.ilAwarenessItem {
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
background-color: @il-main-bg;
|
||||
|
||||
> div[role='button']:focus-visible {
|
||||
.il-focus();
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#awareness-content .media-body {
|
||||
white-space: nowrap;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#awareness-content .media-body {
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
||||
#awareness-content .media-body h4, #awareness-content .media-body p {
|
||||
color: @il-text-color;
|
||||
font-size: 12px;
|
||||
padding: 5px 3px 0 3px;
|
||||
line-height: 1em;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#awareness-content .media-body h4 {
|
||||
padding-top: 0px;
|
||||
font-size: bold;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#awareness-content .dropdown-menu {
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 10px 0;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#awareness-content .dropdown-menu a {
|
||||
color: @il-text-color;
|
||||
}
|
||||
|
||||
#awareness-content .dropdown-menu a:hover {
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
|
||||
#awareness-content .arrow-down {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 11px solid transparent;
|
||||
border-right: 11px solid transparent;
|
||||
border-top: 11px solid white;
|
||||
margin-top: -10px;
|
||||
margin-left: 100px;
|
||||
}
|
||||
|
||||
#awareness_trigger {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#awareness_trigger > span {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.ilAwarenessItem h3.popover-title {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ilAwarenessItem .media {
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ilAwarenessItemRow {
|
||||
display: table-row;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ilAwarenessItem .media-left {
|
||||
width: 55px;
|
||||
}
|
||||
|
||||
.ilAwarenessItemRow .media-body {
|
||||
/* background-image: url('./templates/default/images/scorm/not_attempted.svg'); */
|
||||
background-repeat: no-repeat;
|
||||
background-size: 12px 12px;
|
||||
background-position: right 10px top 50%;
|
||||
/* see http://stackoverflow.com/questions/9789723/css-text-overflow-in-a-table-cell */
|
||||
/* and bug #18937 */
|
||||
/* max-width: 0; */
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ilAwarenessItemRow .media-body.ilAwarenessOnline {
|
||||
background-image: url('@{il-background-images-path}scorm/completed.svg');
|
||||
}
|
||||
|
||||
.ilAwarenessLoader {
|
||||
display: block;
|
||||
margin: 15px auto;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
#il_awrn_filer_btn {
|
||||
.glyphicon{
|
||||
filter: invert(0);
|
||||
margin-right: 0;
|
||||
font-family: 'Glyphicons Halflings';
|
||||
}
|
||||
}
|
||||
|
||||
#il_awrn_filer_btn img {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
#awareness-content .ilHighlighted {
|
||||
background-color: @il-highlight-bg;
|
||||
color: @il-text-light-color;
|
||||
}
|
||||
|
||||
.ilAwrnBadgeHidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* due to bug #17839 */
|
||||
#awareness-content .dropdown-backdrop {
|
||||
display:none;
|
||||
right: auto;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.ilAwarenessItem > div {
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
/* Services/Badge */
|
||||
|
||||
img.ilBadgeImage {
|
||||
max-width: 150px;
|
||||
max-height: 150px;
|
||||
}
|
||||
|
||||
.ilBadgeImageThumbnail a .img-responsive {
|
||||
max-width: 50px;
|
||||
max-height: 50px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.ilBadgeImageThumbnail .modal .img-responsive {
|
||||
margin: auto;
|
||||
width: 50%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
div.ilBadgeBackpackPanelContent {
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
div.ilBadgeBackpackPanelContent img {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
span.ilProfileBadge {
|
||||
display: inline-block;
|
||||
padding: 5px;
|
||||
|
||||
> a {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
display: inline-block;
|
||||
|
||||
img {
|
||||
margin: auto;
|
||||
max-width: 50px;
|
||||
max-height: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.modal .img-responsive {
|
||||
margin: auto;
|
||||
width: 50%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.ilBadgeDeck {
|
||||
.modal .img-responsive {
|
||||
margin: auto;
|
||||
width: 50%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
/* Services/Block */
|
||||
|
||||
.iosPdBlockDragAndDropPlaceholder {
|
||||
border: 3px dashed #c0c0c0;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
/* Blocks */
|
||||
|
||||
div.il_Block, table.il_Block {
|
||||
width: 100%;
|
||||
border-spacing: 0px;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 20px;
|
||||
clear: both;
|
||||
table-layout: fixed;
|
||||
word-wrap: break-word;
|
||||
background-color: @il-main-dark-bg;
|
||||
border: none;
|
||||
text-align: left;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#il_center_col div.il_Block {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
div.ilBlockHeader, div.ilBlockHeaderBig,
|
||||
td.ilBlockHeader, td.ilBlockHeaderBig {
|
||||
/* font-family: 'Open Sans Semibold'; deactivated, since it affects drop downs in the header */
|
||||
font-weight: normal;
|
||||
padding: 3px 0;
|
||||
margin: 0 5px;
|
||||
text-align:left;
|
||||
color: @il-neutral-color;
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
/* box-shadow: 0 -2px 1px -1px white inset; no white lines */
|
||||
}
|
||||
|
||||
div.ilBlockHeaderBig, td.ilBlockHeaderBig {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
h2.ilBlockHeader {
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 100%;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
h3.ilBlockHeader {
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 100%;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
|
||||
/* possibly deprecated */
|
||||
.il_BlockInfo {
|
||||
font-size: 80%;
|
||||
color: @il-text-light-color;
|
||||
}
|
||||
|
||||
/* new class */
|
||||
div.ilBlockInfo {
|
||||
font-size: 75%;
|
||||
color: @il-text-light-color;
|
||||
padding: 1px 3px;
|
||||
background-color: @il-main-dark-bg;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.ilBlockContent {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.ilBlockRow1, .ilBlockRow2 {
|
||||
padding: 3px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
|
||||
div.ilBlockPropertyCaption {
|
||||
color: @il-text-light-color;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/* Services/Bookmarks */
|
||||
|
||||
#block_pdbookm_0 #tree_div {
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#block_pdbookm_0 .il_Block #tree_div img {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.iosPdBmListImg {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
&[src$="spacer.png"] {
|
||||
height: 0;
|
||||
width: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,860 @@
|
||||
/* --- Services/COPage ---*/
|
||||
|
||||
a.ilEditSubmit {
|
||||
background: url("@{il-background-images-path}ButtonsBack.png") repeat-x bottom white;
|
||||
padding: 2px;
|
||||
margin: 0;
|
||||
border: 1px solid #bababa;
|
||||
border-bottom-color: @il-neutral-light-color;
|
||||
border-right-color: @il-neutral-light-color;
|
||||
text-decoration: none;
|
||||
font-size: 80%;
|
||||
line-height: 14px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input.ilEditSubmit {
|
||||
color: #2255a0;
|
||||
padding: 1px;
|
||||
margin: 0;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
cursor: pointer;
|
||||
background: url("@{il-background-images-path}ButtonsBack.png") repeat-x bottom white;
|
||||
border: 1px solid #bababa;
|
||||
border-bottom-color: @il-neutral-light-color;
|
||||
border-right-color: @il-neutral-light-color;
|
||||
&:hover {
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilEditHelpline {
|
||||
margin: 3px 0;
|
||||
padding: 0;
|
||||
font-size: 80%;
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
select.ilEditSelect {
|
||||
background: none white;
|
||||
border: 1px solid #bbb;
|
||||
padding: 1px;
|
||||
text-decoration: none;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
[data-copg-ed-type='add-area'] {
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
button.copg-add.dropdown-toggle.btn,
|
||||
button.copg-add.dropdown-toggle.btn:focus,
|
||||
button.copg-add.dropdown-toggle.btn:hover {
|
||||
padding: 1px 5px;
|
||||
text-align: center;
|
||||
font-size: @font-size-small;
|
||||
background-color: transparent;
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
button.copg-add.dropdown-toggle.btn,
|
||||
button.copg-add.dropdown-toggle.btn:focus,
|
||||
button.copg-add.dropdown-toggle.btn:hover,
|
||||
#copg-editor-help {
|
||||
|
||||
.glyphicon-plus-sign, .il-copg-add-text {
|
||||
color: @il-btn-standard-bg;
|
||||
font-size: @il-font-size-large;
|
||||
}
|
||||
}
|
||||
|
||||
button.copg-add.dropdown-toggle.btn:hover {
|
||||
background-color: lighten(@il-btn-standard-bg, 50%);
|
||||
color: @il-text-light-color;
|
||||
}
|
||||
|
||||
[data-copg-ed-type='add-area'] ul.dropdown-menu {
|
||||
left: 45%;
|
||||
}
|
||||
button.copg-add:hover {
|
||||
color: lighten(@il-secondary-color, 10%);
|
||||
background-color: lighten(@il-secondary-color, 52%);
|
||||
}
|
||||
|
||||
div.il_droparea {
|
||||
padding: 1px 5px;
|
||||
border: 1px dashed #d0d0d0;
|
||||
color: #d0d0d0;
|
||||
text-align: center;
|
||||
font-size: @font-size-small;
|
||||
background-color: #fffed1;
|
||||
cursor: pointer;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
|
||||
div.il_droparea:hover, div.ilCOPGDropActice, .il_droparea_valid_target {
|
||||
border-color: lighten(@il-secondary-color, 10%);
|
||||
color: lighten(@il-secondary-color, 10%);
|
||||
background-color: lighten(@il-secondary-color, 52%);
|
||||
}
|
||||
|
||||
div.ilCOPGNoPageContent {
|
||||
padding: 20px 5px;
|
||||
color: #a0a0a0;
|
||||
}
|
||||
|
||||
|
||||
div.il_editarea_nojs {
|
||||
border-width: 1px dotted #999;
|
||||
}
|
||||
|
||||
div.il_editarea, div.il_editarea_disabled {
|
||||
border: 2px solid transparent;
|
||||
min-height: 20px;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.copg-state-page, .copg-state-multi {
|
||||
div.il_editarea:hover, div.il_editarea_disabled:hover {
|
||||
border: 2px solid @il-main-color;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilEditLabel {
|
||||
position: absolute;
|
||||
background-color: @il-main-color;
|
||||
color: #f0f0f0;
|
||||
font-size: 70%;
|
||||
padding: 1px 3px;
|
||||
margin-top: -15px;
|
||||
margin-left: -2px;
|
||||
border: 0;
|
||||
height: 15px;
|
||||
display: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.copg-state-page, .copg-state-multi {
|
||||
div.il_editarea:hover > div.ilEditLabel,
|
||||
div.il_editarea_disabled:hover > div.ilEditLabel,
|
||||
.copg-ghost-wrapper div.ilEditLabel {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
div.il_editarea_selected:hover > div.ilEditLabel {
|
||||
background-color: @il-secondary-color;
|
||||
}
|
||||
|
||||
|
||||
div.ilc_page_Page > div.il_editarea_disabled {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
div.il_editarea_disabled, div.copg-disabled-page {
|
||||
border: 2px dotted @brand-warning;
|
||||
min-height: 20px;
|
||||
}
|
||||
|
||||
.ilCopgDisabledText {
|
||||
color: @brand-warning;
|
||||
position: absolute;
|
||||
font-size: @font-size-small;
|
||||
margin-top: -13px;
|
||||
padding: 2px 5px;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
|
||||
div.il_editarea_selected, div.copg-current-edit, #tinytarget_ifr {
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
border-color: lighten(@il-secondary-color, 30%);
|
||||
}
|
||||
|
||||
div.il_editarea_selected:hover {
|
||||
border-color: @il-secondary-color;
|
||||
}
|
||||
|
||||
div.il_editarea_disabled_selected
|
||||
{
|
||||
border: 2px solid @brand-warning;
|
||||
min-height: 20px;
|
||||
}
|
||||
|
||||
div.il_editarea_active_selected {
|
||||
border: 2px solid black;
|
||||
min-height: 20px;
|
||||
}
|
||||
|
||||
.il_editmenu {
|
||||
background-color: white;
|
||||
color: black;
|
||||
font-weight: normal;
|
||||
text-align: left;
|
||||
font-style: normal;
|
||||
text-indent: 0;
|
||||
font-size: 14px;
|
||||
z-index: 5000;
|
||||
}
|
||||
|
||||
table.il_editmenu td {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
div.ilEditVAccordCntr {
|
||||
margin-top: 15px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
div.ilEditVAccordICntr {
|
||||
background-color: white;
|
||||
margin-bottom: 15px;
|
||||
border: 1px solid #9eadba;
|
||||
}
|
||||
|
||||
div.ilEditVAccordIHead {
|
||||
padding: 3px;
|
||||
background-color: #e2eaf4;
|
||||
text-align: left;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 3px 4px;
|
||||
}
|
||||
|
||||
div.ilEditVAccordICont {
|
||||
padding: 10px;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.ilTinyMenuSection .dropdown, .il-copg-button-group .dropdown {
|
||||
display:inline-block;
|
||||
}
|
||||
.ilTinyMenuSection .dropdown-menu .btn, .il-copg-button-group .dropdown-menu .btn {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ilTinyMenuSection .btn svg {
|
||||
fill: black;
|
||||
margin: -8px;
|
||||
}
|
||||
|
||||
.ilTinyMenuSection .btn[disabled] svg {
|
||||
fill: #D0D0D0;
|
||||
}
|
||||
|
||||
div.ilTinyMenuSection, .il-copg-button-group {
|
||||
white-space: nowrap;
|
||||
/* border-right: 1px solid #e0e0e0; */
|
||||
/* padding: 0 10px 4px 0; */
|
||||
margin-right: 10px;
|
||||
margin: 10px 10px 10px 0;
|
||||
|
||||
p {
|
||||
margin-bottom: 5px;
|
||||
padding: 2px 5px;
|
||||
background-color: darken(@il-main-dark-bg, 4%);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
height: 28px;
|
||||
margin: 3px 3px 3px 0px;
|
||||
padding: 0 10px 0 0;
|
||||
border-right: 0 none;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilTinyMenuSection button.btn {
|
||||
background: white;
|
||||
border: 0;
|
||||
color: black;
|
||||
}
|
||||
|
||||
div.il-copg-button-group ul.dropdown-menu {
|
||||
right: auto;
|
||||
}
|
||||
|
||||
div.il-copg-button-group-wide {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilTinyMenuSection {
|
||||
float: right;
|
||||
border-right: none;
|
||||
border-left: 1px solid @il-main-border-color;
|
||||
padding: 0 0 4px 10px;
|
||||
margin-right: 0;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#ilTinyMenuButtons {
|
||||
padding-bottom: 15px;
|
||||
zoom:1;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
height: 28px;
|
||||
margin: 3px 3px 3px 0;
|
||||
padding: 0 10px 0 0;
|
||||
border-right: 0 none;
|
||||
}
|
||||
}
|
||||
|
||||
#iltinymenu .bd div.last {
|
||||
float: left;
|
||||
white-space: nowrap;
|
||||
padding: 0 10px 2px 0;
|
||||
border-right: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#iltinymenu {
|
||||
padding: 0 @il-padding-xlarge-horizontal;
|
||||
.bd {
|
||||
div {
|
||||
&.last {
|
||||
float: left;
|
||||
white-space: nowrap;
|
||||
padding: 0 10px 2px 0;
|
||||
border-right: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.small {
|
||||
color: @il-text-light-color;
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
}
|
||||
.btn-default {
|
||||
.mce-ico {
|
||||
color: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
a.btn {
|
||||
min-width: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
#iltinymenu_bd {
|
||||
}
|
||||
|
||||
#ilsaving {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
text-decoration: blink;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.ilTinyMenuDropDown span {
|
||||
padding: 2px 0 0 5px;
|
||||
width: 75px;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
a.ilTinyMenuDropDown {
|
||||
display: inline-block;
|
||||
padding: 0 2px 1px 0;
|
||||
}
|
||||
|
||||
/* if the ilc_page_cont_PageContainer is declared as being relative in the content.css drop downs will be truncated */
|
||||
#ilEditorTD {
|
||||
position: static;
|
||||
}
|
||||
|
||||
#ilEditorTD p {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Page TOC */
|
||||
div.ilc_page_toc_PageTOC {
|
||||
font-size: 90%;
|
||||
padding: 5px 5px 10px;
|
||||
background-color: @il-main-dark-bg;
|
||||
border: 1px solid #f0f0f0;
|
||||
float: left;
|
||||
}
|
||||
|
||||
h1.ilc_page_toc_PageTOCHead {
|
||||
margin: 0;
|
||||
font-size: 100%;
|
||||
padding: 0;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
ul.ilc_page_toc_PageTOCList {
|
||||
margin: 0 0 0 10px;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
li.ilc_page_toc_PageTOCItem {
|
||||
margin: 5px 0 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
a.ilc_page_toc_PageTOCLink {
|
||||
color: #03a;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.ilc_page_toc_PageTOCLink:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
a.ilc_page_toc_PageTOCLink:visited {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
/* --- content styles (will move to content.css) --- */
|
||||
td.ilc_PageDisabled {
|
||||
padding: 20px;
|
||||
border: 1px solid #9eadba;
|
||||
margin-bottom: 0;
|
||||
border-left: 3px dotted @il-danger-color;
|
||||
}
|
||||
|
||||
div.ilc_DefinitionHeader {
|
||||
margin: 20px 0 10px 0;
|
||||
padding: 5px 0;
|
||||
border: 1px solid black;
|
||||
border-width: 1px 0;
|
||||
}
|
||||
|
||||
table.ilc_Fullscreen {
|
||||
background-color: white;
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
html.ilc_Fullscreen, body.ilc_Fullscreen {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
td > div, td > div > figure > div > iframe {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilLMMenu {
|
||||
margin: 0 0 5px 10px;
|
||||
}
|
||||
|
||||
div.ilc_LMMenu {
|
||||
line-height: 22px;
|
||||
}
|
||||
|
||||
a.ilc_LMMenu {
|
||||
padding: 1px 5px;
|
||||
margin: 2px 0;
|
||||
border: 1px solid #b0b0b0;
|
||||
background-color: #e6ecf8;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.ilc_TableOfContents {
|
||||
background-color: white;
|
||||
padding: 20px;
|
||||
border-spacing: 1px;
|
||||
border: 1px solid #eee;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
table.ilc_media {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
h1.il_LMHead {
|
||||
margin: 12px 15px 6px;
|
||||
font-size: 120%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
table.ilc_Table {
|
||||
border-collapse: collapse;
|
||||
background-color: white;
|
||||
margin: 10px 0;
|
||||
border-color: #9eadba;
|
||||
}
|
||||
|
||||
/* COPage Comparison */
|
||||
|
||||
div.ilEditModified, div.ilEditDeleted, div.ilEditNew {
|
||||
border: 3px solid;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
div.ilEditModified {
|
||||
border-color: @il-main-color;
|
||||
}
|
||||
|
||||
div.ilEditDeleted {
|
||||
border-color: @brand-warning;
|
||||
}
|
||||
|
||||
div.ilEditNew {
|
||||
border-color: @il-secondary-color;
|
||||
}
|
||||
|
||||
.ilCOPGCompareLegend {
|
||||
display: inline-block;
|
||||
margin-top: 5px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
span.ilDiffDel {
|
||||
background-color: lighten(@brand-warning, 30%);
|
||||
}
|
||||
|
||||
span.ilDiffIns {
|
||||
background-color: lighten(@il-secondary-color, 30%);
|
||||
}
|
||||
|
||||
a.nostyle:link, a.nostyle:visited {
|
||||
text-decoration: none;
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
|
||||
a.nostyle:hover {
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
|
||||
#ilEditorPanel_c {
|
||||
z-index: 3000 !important;
|
||||
}
|
||||
|
||||
#error_panel_c {
|
||||
z-index: 2000 !important;
|
||||
}
|
||||
|
||||
#ilPageEditLegend {
|
||||
margin: 10px 0;
|
||||
> div {
|
||||
margin: 5px 0;
|
||||
}
|
||||
.il_droparea {
|
||||
&, &:hover {
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
cursor: default;
|
||||
height: 21px;
|
||||
}
|
||||
}
|
||||
|
||||
tr > td {
|
||||
padding: @il-padding-base-vertical @il-padding-xlarge-horizontal;
|
||||
}
|
||||
|
||||
tr > td:first-child {
|
||||
white-space: nowrap;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
.ilPageEditLegendElement {
|
||||
width: 40px;
|
||||
border: 1px solid #d0d0d0;
|
||||
height: 21px;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
padding: 1px 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ilCOPGMediaDisabled {
|
||||
padding: 5px;
|
||||
font-size: 0px;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
background-color: darken(@il-secondary-color, 20%);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.ilCOPgEditStyleSelectionItem {
|
||||
padding: 10px;
|
||||
background-color: @il-main-dark-bg;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ilCOPgEditStyleSelectionItem:hover {
|
||||
background-color: @il-highlight-bg;
|
||||
}
|
||||
|
||||
ul#ilAdvSelListTable_style_selection {
|
||||
overflow: auto;
|
||||
max-height: 400px;
|
||||
}
|
||||
|
||||
a.ilCOPageSection {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
|
||||
#ilAdvSelListAnchorText_char_style_selection > span {
|
||||
min-width: auto;
|
||||
}
|
||||
|
||||
div.ilc_answers.answer-table div.ilc_qanswer_Answer {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
div.ilc_answers.answer-table div.ilc_qanswer_Answer > div {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
div.ilc_question_SingleChoice .answertext > p, div.ilc_question_MultipleChoice .answertext > p {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
div.ilc_question_SingleChoice .ilc_qanswer_Answer > div:first-child,
|
||||
div.ilc_question_MultipleChoice .ilc_qanswer_Answer > div:first-child {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
|
||||
div.ilCOPGMediaPrint {
|
||||
background-color: @il-main-dark-bg !important;
|
||||
position: relative !important;
|
||||
background-image: url("@{il-background-images-path}play.svg") !important;
|
||||
background-position: 50% 50% !important;
|
||||
background-repeat: no-repeat !important;
|
||||
background-size: auto 90% !important;
|
||||
padding: 1px !important;
|
||||
}
|
||||
|
||||
/* fullscreen iframe */
|
||||
.il-copg-mob-fullscreen {
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.il-copg-mob-fullscreen-modal .modal-dialog {
|
||||
width:95%;
|
||||
}
|
||||
|
||||
.ilTinyParagraphClassSelector ul.dropdown-menu,
|
||||
.ilTinyMenuSection > div.dropdown:nth-child(2) > ul.dropdown-menu,
|
||||
.ilSectionClassSelector ul.dropdown-menu {
|
||||
right: auto;
|
||||
}
|
||||
|
||||
#il_prop_cont_characteristic ul.dropdown-menu {
|
||||
right: auto;
|
||||
}
|
||||
|
||||
|
||||
#iltinymenu .dropdown-menu li {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#tinytarget_ifr > body#tinymce {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
#tinytarget_ifr {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#tinytarget_div {
|
||||
|
||||
position: absolute;
|
||||
top:0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
div.tox-edit-area {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.tox-tinymce {
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.copg-ghost-wrapper {
|
||||
min-height: 20px;
|
||||
position: relative; /* important for the absolute positioned tinytarget_div */
|
||||
}
|
||||
|
||||
.copg-input-ghost {
|
||||
visibility: hidden;
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
#copg-editor-slate-content {
|
||||
padding: @il-padding-xlarge-vertical 0px;
|
||||
|
||||
p {
|
||||
padding: 0;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
p.ilTinyInfo {
|
||||
padding: 4px;
|
||||
width: 100%;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
div.alert {
|
||||
margin: 10px 0;
|
||||
}
|
||||
form.form-horizontal {
|
||||
margin-bottom: @il-padding-xlarge-vertical;
|
||||
.ilFormHeader {
|
||||
padding: @il-padding-xlarge-vertical @il-padding-xlarge-horizontal;
|
||||
h3.ilHeader {
|
||||
font-size: @font-size-base;
|
||||
}
|
||||
}
|
||||
.col-sm-3, .col-sm-9 {
|
||||
width: 100%;
|
||||
}
|
||||
.control-label {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
min-height: auto;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.ilFormFooter {
|
||||
padding: @il-padding-base-vertical @il-padding-xlarge-horizontal;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
}
|
||||
|
||||
> .btn-link {
|
||||
padding: 0px @il-padding-xlarge-horizontal;
|
||||
}
|
||||
}
|
||||
|
||||
#copg-top-actions {
|
||||
padding: 0 @il-padding-xlarge-horizontal;
|
||||
}
|
||||
|
||||
.copg-edit-button-group {
|
||||
padding: @il-padding-base-vertical @il-padding-xlarge-horizontal;
|
||||
}
|
||||
|
||||
p#copg-auto-save {
|
||||
padding: 0;
|
||||
margin: -5px 0 0 0;
|
||||
}
|
||||
|
||||
.copg-edit-container {
|
||||
border: 1px dashed #d0d0d0;
|
||||
}
|
||||
|
||||
/* very important: add areas around floating images https://stackoverflow.com/questions/1260122/expand-a-div-to-fill-the-remaining-width and https://css-tricks.com/popping-hidden-overflow/ */
|
||||
#il_EditPage [data-copg-ed-type="add-area"] {
|
||||
position: relative;
|
||||
|
||||
> .dropdown {
|
||||
overflow: hidden;
|
||||
position: static;
|
||||
> ul {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
this fixes the add drop down click behaviour for touch devices
|
||||
see: https://github.com/twbs/bootstrap/issues/4550#issuecomment-31916049
|
||||
and: https://mantis.ilias.de/view.php?id=29785
|
||||
*/
|
||||
#il_EditPage .dropdown-backdrop {
|
||||
position: static;
|
||||
}
|
||||
|
||||
#ed_datatable {
|
||||
|
||||
background-color: @il-main-bg;
|
||||
|
||||
th {
|
||||
background-color: @il-main-dark-bg;
|
||||
.dropdown button {
|
||||
background-color: @il-main-dark-bg;
|
||||
text-align: center;
|
||||
color: @il-text-color;
|
||||
width: 100%;
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
|
||||
th, td {
|
||||
border: 1px solid #CCCCCC;
|
||||
}
|
||||
|
||||
th {
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.copg-new-content-placeholder {
|
||||
text-align: center;
|
||||
color: @il-text-light-color;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.il-copg-drag {
|
||||
width: 40px;
|
||||
border: 1px solid @il-main-color;
|
||||
height: 30px;
|
||||
z-index: 100000;
|
||||
}
|
||||
|
||||
.il-copg-media-cover {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.il-copg-edit-list-button {
|
||||
padding: 0;
|
||||
img {
|
||||
filter: invert(100%);
|
||||
width: 26px;
|
||||
height: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
#il-copg-ed-modal .modal-content {
|
||||
.Whoops.container {
|
||||
.left-panel {
|
||||
position: static;
|
||||
float: left;
|
||||
}
|
||||
.details-container {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
}
|
||||
Vendored
+362
@@ -0,0 +1,362 @@
|
||||
/*!
|
||||
* Datetimepicker for Bootstrap 3
|
||||
* version : 4.17.37
|
||||
* https://github.com/Eonasdan/bootstrap-datetimepicker/
|
||||
*/
|
||||
|
||||
/* see variables.less
|
||||
@bs-datetimepicker-timepicker-font-size: 1.2em;
|
||||
@bs-datetimepicker-active-bg: @btn-primary-bg;
|
||||
@bs-datetimepicker-active-color: @btn-primary-color;
|
||||
@bs-datetimepicker-border-radius: @border-radius-base;
|
||||
@bs-datetimepicker-btn-hover-bg: @gray-lighter;
|
||||
@bs-datetimepicker-disabled-color: @gray-light;
|
||||
@bs-datetimepicker-alternate-color: @gray-light;
|
||||
@bs-datetimepicker-secondary-border-color: #ccc;
|
||||
@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);
|
||||
@bs-datetimepicker-primary-border-color: white;
|
||||
@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
*/
|
||||
|
||||
.bootstrap-datetimepicker-widget {
|
||||
list-style: none;
|
||||
|
||||
&.dropdown-menu {
|
||||
margin: 2px 0;
|
||||
padding: 4px;
|
||||
width: 19em;
|
||||
|
||||
&.timepicker-sbs {
|
||||
@media (min-width: @screen-sm-min) {
|
||||
width: 38em;
|
||||
}
|
||||
|
||||
@media (min-width: @screen-md-min) {
|
||||
width: 38em;
|
||||
}
|
||||
|
||||
@media (min-width: @screen-lg-min) {
|
||||
width: 38em;
|
||||
}
|
||||
}
|
||||
|
||||
&:before, &:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
&.bottom {
|
||||
&:before {
|
||||
border-left: 7px solid transparent;
|
||||
border-right: 7px solid transparent;
|
||||
border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;
|
||||
border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;
|
||||
top: -7px;
|
||||
left: 7px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-bottom: 6px solid @bs-datetimepicker-primary-border-color;
|
||||
top: -6px;
|
||||
left: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
&.top {
|
||||
&:before {
|
||||
border-left: 7px solid transparent;
|
||||
border-right: 7px solid transparent;
|
||||
border-top: 7px solid @bs-datetimepicker-secondary-border-color;
|
||||
border-top-color: @bs-datetimepicker-secondary-border-color-rgba;
|
||||
bottom: -7px;
|
||||
left: 6px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-top: 6px solid @bs-datetimepicker-primary-border-color;
|
||||
bottom: -6px;
|
||||
left: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
&.pull-right {
|
||||
&:before {
|
||||
left: auto;
|
||||
right: 6px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
left: auto;
|
||||
right: 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-unstyled {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a[data-action] {
|
||||
padding: 6px 0;
|
||||
}
|
||||
|
||||
a[data-action]:active {
|
||||
.box-shadow(none);
|
||||
}
|
||||
|
||||
.timepicker-hour, .timepicker-minute, .timepicker-second {
|
||||
width: 54px;
|
||||
font-weight: bold;
|
||||
font-size: @bs-datetimepicker-timepicker-font-size;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
button[data-action] {
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.btn[data-action="incrementHours"]::after {
|
||||
.sr-only();
|
||||
content: "Increment Hours";
|
||||
}
|
||||
|
||||
.btn[data-action="incrementMinutes"]::after {
|
||||
.sr-only();
|
||||
content: "Increment Minutes";
|
||||
}
|
||||
|
||||
.btn[data-action="decrementHours"]::after {
|
||||
.sr-only();
|
||||
content: "Decrement Hours";
|
||||
}
|
||||
|
||||
.btn[data-action="decrementMinutes"]::after {
|
||||
.sr-only();
|
||||
content: "Decrement Minutes";
|
||||
}
|
||||
|
||||
.btn[data-action="showHours"]::after {
|
||||
.sr-only();
|
||||
content: "Show Hours";
|
||||
}
|
||||
|
||||
.btn[data-action="showMinutes"]::after {
|
||||
.sr-only();
|
||||
content: "Show Minutes";
|
||||
}
|
||||
|
||||
.btn[data-action="togglePeriod"]::after {
|
||||
.sr-only();
|
||||
content: "Toggle AM/PM";
|
||||
}
|
||||
|
||||
.btn[data-action="clear"]::after {
|
||||
.sr-only();
|
||||
content: "Clear the picker";
|
||||
}
|
||||
|
||||
.btn[data-action="today"]::after {
|
||||
.sr-only();
|
||||
content: "Set the date to today";
|
||||
}
|
||||
|
||||
.picker-switch {
|
||||
text-align: center;
|
||||
|
||||
&::after {
|
||||
.sr-only();
|
||||
content: "Toggle Date and Time Screens";
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: auto;
|
||||
width: auto;
|
||||
line-height: inherit;
|
||||
|
||||
span {
|
||||
line-height: 2.5;
|
||||
height: 2.5em;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
|
||||
|
||||
& td,
|
||||
& th {
|
||||
text-align: center;
|
||||
border-radius: @bs-datetimepicker-border-radius;
|
||||
}
|
||||
|
||||
& th {
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
width: 20px;
|
||||
|
||||
&.picker-switch {
|
||||
width: 145px;
|
||||
}
|
||||
|
||||
&.disabled,
|
||||
&.disabled:hover {
|
||||
background: none;
|
||||
color: @bs-datetimepicker-disabled-color;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
&.prev::after {
|
||||
.sr-only();
|
||||
content: "Previous Month";
|
||||
}
|
||||
|
||||
&.next::after {
|
||||
.sr-only();
|
||||
content: "Next Month";
|
||||
}
|
||||
}
|
||||
|
||||
& thead tr:first-child th {
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background: @bs-datetimepicker-btn-hover-bg;
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
}
|
||||
|
||||
& td {
|
||||
height: 54px;
|
||||
line-height: 54px;
|
||||
width: 54px;
|
||||
|
||||
&.cw {
|
||||
font-size: .8em;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
color: @bs-datetimepicker-alternate-color;
|
||||
}
|
||||
|
||||
&.day {
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
&.day:hover,
|
||||
&.hour:hover,
|
||||
&.minute:hover,
|
||||
&.second:hover {
|
||||
background: @bs-datetimepicker-btn-hover-bg;
|
||||
color: @il-text-hover-color;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&.old,
|
||||
&.new {
|
||||
color: @bs-datetimepicker-alternate-color;
|
||||
}
|
||||
|
||||
&.today {
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 7px 7px;
|
||||
border-bottom-color: @bs-datetimepicker-active-bg;
|
||||
border-top-color: @bs-datetimepicker-secondary-border-color-rgba;
|
||||
position: absolute;
|
||||
bottom: 4px;
|
||||
right: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
&.active,
|
||||
&.active:hover {
|
||||
background-color: @bs-datetimepicker-active-bg;
|
||||
color: @bs-datetimepicker-active-color;
|
||||
text-shadow: @bs-datetimepicker-text-shadow;
|
||||
}
|
||||
|
||||
&.active.today:before {
|
||||
border-bottom-color: white;
|
||||
}
|
||||
|
||||
&.disabled,
|
||||
&.disabled:hover {
|
||||
background: none;
|
||||
color: @bs-datetimepicker-disabled-color;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
line-height: 54px;
|
||||
margin: 2px 1.5px;
|
||||
cursor: pointer;
|
||||
border-radius: @bs-datetimepicker-border-radius;
|
||||
|
||||
&:hover {
|
||||
background: @bs-datetimepicker-btn-hover-bg;
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
|
||||
&.active {
|
||||
background-color: @bs-datetimepicker-active-bg;
|
||||
color: @bs-datetimepicker-active-color;
|
||||
text-shadow: @bs-datetimepicker-text-shadow;
|
||||
}
|
||||
|
||||
&.old {
|
||||
color: @bs-datetimepicker-alternate-color;
|
||||
}
|
||||
|
||||
&.disabled,
|
||||
&.disabled:hover {
|
||||
background: none;
|
||||
color: @bs-datetimepicker-disabled-color;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.usetwentyfour {
|
||||
td.hour {
|
||||
height: 27px;
|
||||
line-height: 27px;
|
||||
}
|
||||
}
|
||||
|
||||
&.wider {
|
||||
width: 21em;
|
||||
}
|
||||
|
||||
& .datepicker-decades .decade {
|
||||
line-height: 1.8em !important;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group.date {
|
||||
& .input-group-addon {
|
||||
cursor: pointer;
|
||||
border: 1px solid @il-main-border-dark-color;
|
||||
&:last-child {
|
||||
border-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,474 @@
|
||||
/* Services/Calendar */
|
||||
|
||||
td.even {
|
||||
color: @il-text-color;
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
td.uneven {
|
||||
color: @il-text-color;
|
||||
background-color: @il-content-bg;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
td.today {
|
||||
background-color: @il-content-bg;
|
||||
}
|
||||
|
||||
|
||||
td.date {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
td.prevMonth {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
div#block_cal_sel_0 div.ilBlockContent {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.ilCalSelAct {
|
||||
font-size: 90%;
|
||||
padding: 2px 2px 3px 0;
|
||||
}
|
||||
|
||||
div.ilCalSelSelAll {
|
||||
font-size: 80%;
|
||||
padding: 3px 2px 2px 0;
|
||||
}
|
||||
|
||||
div.ilCalSelList {
|
||||
max-height: 300px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.ilCalSelList img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
ul.ilCalSel {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul.ilCalSel li {
|
||||
margin: 0;
|
||||
/* padding: 0 0 0 48px; */
|
||||
margin: 0;
|
||||
border-bottom: 1px solid @il-content-bg;
|
||||
/* min-height: 25px; */
|
||||
}
|
||||
|
||||
ul.ilCalSel li > div {
|
||||
display:table-row;
|
||||
}
|
||||
|
||||
ul.ilCalSel li > div > div {
|
||||
display:table-cell;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
ul.ilCalSel li > div > div.ilCalColSpan {
|
||||
border-left: 5px solid;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
ul.ilCalSel li img {
|
||||
}
|
||||
|
||||
div.ilCalSelList h6 {
|
||||
padding-left: 5px;
|
||||
font-size: @font-size-small;
|
||||
margin-top: 16px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
div.ilCalSelTitle {
|
||||
padding: 5px 3px 3px;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
table.calmini {
|
||||
width: 100%;
|
||||
font-size: 90%;
|
||||
//border-spacing: 2px;
|
||||
//border-collapse: separate;
|
||||
border-collapse: collapse;
|
||||
background-color: @il-main-dark-bg;
|
||||
border: none;
|
||||
tr, td, th {
|
||||
border: none;
|
||||
padding: 5px 3px;
|
||||
@media only screen and (max-width: 991px) {padding: 5px 1px;}
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
color: @il-text-color;
|
||||
background-color: transparent;
|
||||
}
|
||||
tr:nth-child(odd) {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
tr:nth-child(even) {
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
th.calmini, th.calminiweek {
|
||||
font-weight: 600;
|
||||
font-size: 90%;
|
||||
}
|
||||
td.calministd > .il_calmini_monthday > a {
|
||||
}
|
||||
td.calminitoday {
|
||||
background-color: @brand-warning;
|
||||
> .il_calmini_monthday > a {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
td.calminiprev > .il_calmini_monthday > a,
|
||||
td.calmininext > .il_calmini_monthday > a {
|
||||
color: @il-text-color;
|
||||
display:none;
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
a.callink:link, a.callink:visited {
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
}
|
||||
a.callink:hover {
|
||||
}
|
||||
.il_calevent > .btn.btn-link {
|
||||
color:inherit;
|
||||
vertical-align: inherit;
|
||||
}
|
||||
.cal_modal_infoscreen .il_InfoScreenPropertyValue .btn-link {
|
||||
text-align:left;
|
||||
vertical-align: top;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
//** Moved from Services/Calendar/templates/calendar.css
|
||||
table.calstd {
|
||||
margin-top: @padding-large-vertical;
|
||||
color: @il-text-color;
|
||||
width:100%;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.calheader {
|
||||
color: @il-text-color;
|
||||
font-weight: normal;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
|
||||
th.calstd {
|
||||
text-align: center;
|
||||
background-color: @il-main-dark-bg;
|
||||
font-weight: normal;
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
}
|
||||
|
||||
.calheadertime {
|
||||
background-color: @il-main-dark-bg;
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
line-break: auto;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
td.calheadertime {
|
||||
width: 6em;
|
||||
text-align: center;
|
||||
background-color: @il-content-bg;
|
||||
font-size: 90%;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
tr.calstdtime:first-of-type td{
|
||||
background-color: black;
|
||||
}
|
||||
.calstdtime td {
|
||||
border-spacing: 0px;
|
||||
border-right-width: 1px;
|
||||
border-right-style: solid;
|
||||
border-right-color: @table-border-color;
|
||||
}
|
||||
|
||||
td.calempty, th.calempty{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
td.calempty_border {
|
||||
background-color:white;
|
||||
border-spacing:0px;
|
||||
border-bottom-width:1px;
|
||||
border-bottom-style:solid;
|
||||
border-bottom-color:@table-border-color;
|
||||
}
|
||||
|
||||
tr.calstd{
|
||||
/*background-color: inherit;*/
|
||||
background-color:white;
|
||||
height: 6em;
|
||||
}
|
||||
|
||||
table.il-cal-day tr.calstd + tr.calstdtime td.calempty,
|
||||
table.il-cal-week tr.calstd + tr.calstdtime td.calempty{
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
table.il-cal-day tr.calstd , table.il-cal-week tr.calstd {
|
||||
border-collapse:collapse;
|
||||
border-color:@table-border-color;
|
||||
|
||||
border-bottom-width:2px;
|
||||
border-bottom-style:solid;
|
||||
|
||||
border-top-width:2px;
|
||||
border-top-style:solid;
|
||||
}
|
||||
|
||||
table.il-cal-week {
|
||||
table-layout: fixed;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
table.il-cal-week td.calevent {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
tr.calstdtime {
|
||||
height: 1.2em;
|
||||
background-color: inherit;
|
||||
border-right-width:1px;
|
||||
border-right-style:solid;
|
||||
border-right-color:@table-border-color;
|
||||
}
|
||||
|
||||
|
||||
td.calstd {
|
||||
vertical-align: top;
|
||||
background-color: @il-main-bg;
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
padding: 2px 0px;
|
||||
}
|
||||
|
||||
td.caltoday {
|
||||
vertical-align: top;
|
||||
background-color:#FFE79C;
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
}
|
||||
|
||||
|
||||
td.calnow {
|
||||
vertical-align: top;
|
||||
background-color:#FFF0C4;
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
}
|
||||
|
||||
td.calnext {
|
||||
vertical-align: top;
|
||||
background-color: @il-main-dark-bg;
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
}
|
||||
|
||||
td.calprev {
|
||||
vertical-align: top;
|
||||
background-color: @il-main-dark-bg;
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
}
|
||||
|
||||
p.il_calevent {
|
||||
color:white;
|
||||
margin: 2px 0 0 0;
|
||||
padding: 2px;
|
||||
border-spacing: 0px;
|
||||
font-size: 90%;
|
||||
|
||||
.btn-link{
|
||||
margin:0 auto;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
td.calevent {
|
||||
//color:white;
|
||||
vertical-align: top;
|
||||
/*padding: 3px;*/
|
||||
border-spacing:0px;
|
||||
border-collapse:collapse;
|
||||
border-width:1px;
|
||||
border-style: solid;
|
||||
border-color: @table-border-color;
|
||||
font-size:90%;
|
||||
/*background-color:white;*/
|
||||
}
|
||||
|
||||
div.calevent {
|
||||
font-size:90%;
|
||||
padding: 3px;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
div.calfullcontent {
|
||||
padding:4px;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
p.il_cal_monthday {
|
||||
padding: 2px;
|
||||
margin: 0px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
p.il_cal_navigation {
|
||||
padding: 0px 3px 0px 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
||||
table.calmini
|
||||
{
|
||||
width:100%;
|
||||
|
||||
}
|
||||
|
||||
.calminiheader {
|
||||
color:@il-text-color;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
th.calmini {
|
||||
text-align: center;
|
||||
font-size:90%;
|
||||
font-weight:normal;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
tr.calmini {
|
||||
}
|
||||
|
||||
a.calminiapp {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p.il_calmini_monthday, div.il_calmini_monthday {
|
||||
margin: 1px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
td.calministd {
|
||||
vertical-align: top;
|
||||
border-collapse:collapse;
|
||||
background-color:@il-main-bg;
|
||||
border-spacing:0px;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
font-size:90%;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
td.calminitoday {
|
||||
vertical-align: top;
|
||||
background-color:#FFE79C;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
font-size:90%;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
td.calmininow {
|
||||
vertical-align: top;
|
||||
background-color:#FFF0C4;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
font-size:90%;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
td.calmininext {
|
||||
vertical-align: top;
|
||||
background-color: @il-main-dark-bg;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
font-size:90%;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
td.calminiprev {
|
||||
vertical-align: top;
|
||||
background-color: @il-main-dark-bg;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
font-size:90%;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
td.calminiweek, th.calminiweek {
|
||||
vertical-align: top;
|
||||
background-color: @il-main-bg;
|
||||
font-size:60%;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
span.calminiinactive {
|
||||
color: #CCCCCC;
|
||||
}
|
||||
.calnewapplink {
|
||||
float: right;
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
span.ilIcalIcon .btn {
|
||||
text-align: initial;
|
||||
margin-top: @il-padding-large-vertical;
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
/* Services/Captcha */
|
||||
|
||||
div.iosCaptcha {
|
||||
}
|
||||
|
||||
div.iosCaptchaImageContainer {
|
||||
}
|
||||
|
||||
div.iosCaptchaInfoContainer {
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
|
||||
div.iosCaptchaInputCommandContainer {
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
|
||||
div.iosCaptchaInputCommandContainer .reload {
|
||||
width: 19px;
|
||||
height: 19px !important;
|
||||
font-size: 100%;
|
||||
vertical-align: top;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.iosCaptchaInputCommandContainer .reload img {
|
||||
width: 19px;
|
||||
height: 19px;
|
||||
margin: 0;
|
||||
padding: 3;
|
||||
}
|
||||
|
||||
div.iosCaptchaInputCommandContainer .audio {
|
||||
width: 19px;
|
||||
height: 19px;
|
||||
margin: 0 10px 0 12px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
input.iosCaptchaInput {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
.il-deck {
|
||||
.il-card {
|
||||
.caption {
|
||||
div.icon.small {
|
||||
vertical-align: middle
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* Services/Chart */
|
||||
|
||||
td.legendColorBox, td.legendLabel {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
div.ilChartWrapper {
|
||||
max-width: 100%;
|
||||
}
|
||||
@@ -0,0 +1,262 @@
|
||||
/* Services/Container */
|
||||
div.il_Preconditions {
|
||||
padding: 10px 0 0;
|
||||
}
|
||||
|
||||
div.il_PreconditionsTitel {
|
||||
margin-top: 3px;
|
||||
text-align: left;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.il_PreconditionsTitel {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.ilPreconditionItem {
|
||||
margin: 0 -10px;
|
||||
}
|
||||
|
||||
/* Repository */
|
||||
div.ilContainerListItemOuter {
|
||||
padding: @panel-body-padding @padding-large-horizontal;
|
||||
zoom: 1;
|
||||
}
|
||||
[dir="rtl"] div.ilContainerListItemOuter {
|
||||
display: table;
|
||||
}
|
||||
div.tblfooter {
|
||||
&.ilContainerListFooter {
|
||||
font-size: 100%;
|
||||
padding: 3px 0 0 10px;
|
||||
text-align: left;
|
||||
> input {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
> label {
|
||||
margin: 0;
|
||||
padding: 0 0 0 8px;
|
||||
vertical-align: top;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
input[name^="position[blocks]"] {
|
||||
margin: 0 0 0 -2px;
|
||||
}
|
||||
|
||||
|
||||
[dir="rtl"] .ilContainerListFooter {
|
||||
padding-left: 0;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
div.ilListItemSection {
|
||||
clear:both;
|
||||
max-width: calc(~"100% - 40px");
|
||||
}
|
||||
|
||||
div.ilContainerListItemOuterHighlight {
|
||||
background-color: @il-highlight-bg;
|
||||
zoom: 1;
|
||||
}
|
||||
|
||||
|
||||
.ilCLI {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.ilContainerListItemCB {
|
||||
/*float: left;
|
||||
width: 25px;*/
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
padding-right: 10px;
|
||||
|
||||
img{
|
||||
width: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilContainerListItemCB {
|
||||
/* float: right; */
|
||||
}
|
||||
|
||||
div.ilContainerListItemIcon {
|
||||
/* margin-top: -3px;
|
||||
float: left;
|
||||
position: absolute; */
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
}
|
||||
div.ilContainerListItemIcon a {
|
||||
display: block;
|
||||
margin-top: -3px;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilContainerListItemIcon {
|
||||
float: right;
|
||||
}
|
||||
|
||||
div.ilContainerListItemIconCB {
|
||||
margin-left: 25px;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilContainerListItemIconCB {
|
||||
margin-left: 0;
|
||||
margin-right: 25px;
|
||||
}
|
||||
|
||||
div[class^="il_editarea"] .ilContainerListItemOuter img,
|
||||
img.ilListItemIcon {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
div.ilContainerListItemContent {
|
||||
/* margin-left: 35px; */
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilContainerListItemContent {
|
||||
/* margin-left: 0;
|
||||
margin-right: 35px; */
|
||||
}
|
||||
|
||||
/* If checkbox is activated, add spacing */
|
||||
div.ilContainerListItemContentCB {
|
||||
/* margin-left: 60px; */
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilContainerListItemContentCB {
|
||||
/* margin-left: 0;
|
||||
margin-right: 60px; */
|
||||
}
|
||||
|
||||
div.il_ContainerListItem {
|
||||
margin: 2px 0;
|
||||
padding-left: 8px;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.il_ContainerListItem {
|
||||
padding-left: 0;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
.ilContainerBlockHeader {
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: @panel-heading-padding;
|
||||
font-weight: 400;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
h3{
|
||||
margin: 0;
|
||||
color: @panel-heading-color;
|
||||
}
|
||||
//See headings overlays input field in sorting view 32364
|
||||
.form-control {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.ilContainerBlockHeaderExpanded, .ilContainerBlockHeaderCollapsed {
|
||||
background-repeat: no-repeat;
|
||||
background-position: 15px 10px;
|
||||
background-size: 20px 20px;
|
||||
padding-left: 45px;
|
||||
/* padding-top: 6px; */
|
||||
background-color: @il-main-dark-bg;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.ilContainerBlockHeaderExpanded {
|
||||
background-image: url("@{il-background-images-path}tree_exp.svg");
|
||||
}
|
||||
|
||||
.ilContainerBlockHeaderCollapsed {
|
||||
background-image: url("@{il-background-images-path}tree_col.svg");
|
||||
}
|
||||
|
||||
[dir="rtl"] .ilContainerBlockHeader {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.ilContainerBlock {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
div#cont_paste_explorer_tree ul.il_Explorer {
|
||||
margin: 0 0 0 24px;
|
||||
}
|
||||
|
||||
[dir="rtl"] div#cont_paste_explorer_tree ul.il_Explorer {
|
||||
margin: 0 24px 0 0;
|
||||
}
|
||||
|
||||
#ilContRepIntro {
|
||||
margin: 20px 0 50px 0;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
div#ilContRepIntro img {
|
||||
float: right;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
[dir="rtl"] div#ilContRepIntro img {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ilContObjectiveObjectListItem {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
.ilContObjectiveIntro {
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 1px 15px;
|
||||
}
|
||||
|
||||
.ilContObjectivesViewTestItem {
|
||||
background-color: @il-main-dark-bg;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.ilContainerTileRows {
|
||||
margin: 0px -15px 0 -15px;
|
||||
padding: @padding-large-vertical @padding-large-horizontal;
|
||||
background-color: @il-main-bg;
|
||||
|
||||
>.il-deck{
|
||||
margin: 0 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilContainerTileRows .card-no-highlight {
|
||||
height: 0px;
|
||||
}
|
||||
|
||||
.ilContainerTileRows .il-chart-progressmeter-container {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ilContainerTileRows .il-card h5 button.btn {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
.ilContainerShowMore {
|
||||
padding: 15px 10px;
|
||||
background-color: @il-main-dark-bg;
|
||||
text-align: center;
|
||||
margin: 0 -15px;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/* Services/FileUpload */
|
||||
|
||||
.ilFileUploadEntryProgressPercent {
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
.ilFileUploadEntryOptions {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.ilFileUploadEntryOptions label.control-label {
|
||||
padding-top: 3px;
|
||||
}
|
||||
@@ -0,0 +1,340 @@
|
||||
/* Services/Form */
|
||||
|
||||
/* forms */
|
||||
|
||||
label, input[type=checkbox], input[type=radio], select {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
font-size: @il-standard-form-font-size;
|
||||
color: @il-text-color;
|
||||
border: 1px solid @il-main-border-dark-color;
|
||||
}
|
||||
|
||||
.form-control[disabled],
|
||||
.form-control[readonly],
|
||||
fieldset[disabled] .form-control {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
.form-horizontal {
|
||||
margin-bottom: 20px;
|
||||
background: @il-standard-form-bg;
|
||||
}
|
||||
|
||||
form.form-inline {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.form-horizontal .form-group {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.form-control, .form-control:focus {
|
||||
.box-shadow(none);
|
||||
}
|
||||
|
||||
.form-control:focus-visible {
|
||||
.box-shadow(none);
|
||||
outline: @il-focus-outline-inner;
|
||||
}
|
||||
|
||||
input[type="file"]:focus:focus-visible::after,
|
||||
input[type="radio"]:focus:focus-visible::after,
|
||||
input[type="checkbox"]:focus:focus-visible::after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
input.btn.btn-default:focus-visible {
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: @il-focus-outline-inner-width;
|
||||
}
|
||||
|
||||
.btn-file:focus-within, .btn-file:hover:focus-within {
|
||||
z-index: 3;
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: @il-focus-outline-inner-width;
|
||||
}
|
||||
|
||||
textarea.form-control {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
select.form-control {
|
||||
width: auto;
|
||||
max-width:100%;
|
||||
}
|
||||
|
||||
.form-horizontal label {
|
||||
color: @il-standard-form-label-color;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.form-control-static {
|
||||
//needed until bootstrap set min-heigth and padding...
|
||||
//no effect without it!
|
||||
display: block;
|
||||
}
|
||||
|
||||
.form-horizontal {
|
||||
.control-label {
|
||||
//padding-top: 0;
|
||||
//line-height: 24px;
|
||||
padding-bottom: (@padding-base-vertical + 1);
|
||||
min-height: (@line-height-computed + @font-size-base);
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
min-height: auto;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
&.col-sm-3.il_textarea {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.radio,
|
||||
.checkbox,
|
||||
.radio-inline,
|
||||
.checkbox-inline {
|
||||
padding-top: 0;
|
||||
line-height: normal;
|
||||
}
|
||||
div.radio label.radio-inline {
|
||||
line-height: @input-height-base;
|
||||
}
|
||||
}
|
||||
|
||||
.radio input[type="radio"],
|
||||
.radio-inline input[type="radio"],
|
||||
.checkbox input[type="checkbox"],
|
||||
.checkbox-inline input[type="checkbox"] {
|
||||
position: static;
|
||||
display: inline-block;
|
||||
margin-left: -20px;
|
||||
margin-top: 7px;
|
||||
min-width: 13px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
min-width: 16px;
|
||||
}
|
||||
}
|
||||
.radio input[type="radio"],
|
||||
.radio-inline input[type="radio"] {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
[dir="rtl"] .form-horizontal .control-label {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
td.form-inline > div.form-group {
|
||||
display: block;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
input[type="radio"]:focus:focus-visible,
|
||||
input[type="checkbox"]:focus:focus-visible {
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: @il-focus-outline-outer-width;
|
||||
}
|
||||
|
||||
input[type="file"].form-control {
|
||||
border: none;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.ilFormHeader {
|
||||
padding: 15px 0 5px;
|
||||
.ilFormCmds {
|
||||
margin: 0;
|
||||
float: right;
|
||||
}
|
||||
h3 {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] .ilFormHeader .ilFormCmds {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ilFormHeader, .ilFormFooter {
|
||||
color: @il-standard-form-header-color;
|
||||
background-color: @il-standard-form-header-bg;
|
||||
}
|
||||
|
||||
.ilSubForm {
|
||||
background-color: @il-standard-form-dependant-group-bg;
|
||||
padding: 3px 0;
|
||||
margin-bottom: 10px;
|
||||
.form-group {
|
||||
margin: 0;
|
||||
@media (max-width: @grid-float-breakpoint-max) {
|
||||
margin: @padding-large-vertical 0;
|
||||
}
|
||||
}
|
||||
.col-sm-9.il_textarea {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.ilFormFooter {
|
||||
padding: 3px 0;
|
||||
}
|
||||
|
||||
.ilFormFooter .ilFormCmds {
|
||||
text-align: right;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
[dir="rtl"] .ilFormFooter .ilFormCmds {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* jQuery ui autocomplete menu */
|
||||
input.ilHFormHighlighted, .ui-state-focus {
|
||||
background-color: #ff9;
|
||||
}
|
||||
|
||||
div.ilFormExternalSetting {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div.ilFormExternalSetting ul {
|
||||
margin: 2px 0;
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilFormExternalSetting ul {
|
||||
padding-left: 0;
|
||||
padding-right: 25px;
|
||||
}
|
||||
|
||||
div.ilFormExternalSetting span {
|
||||
color: @il-warning-color;
|
||||
/* font-style: italic; */
|
||||
}
|
||||
|
||||
div[id^="ilFormField"] {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* Hierarchy Form */
|
||||
div.ilHFormHeader, div.ilHFormFooter {
|
||||
color: @il-standard-form-header-color;
|
||||
background-color: @il-standard-form-header-bg;
|
||||
padding: 4px 0 4px 22px;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilHFormHeader, [dir="rtl"] div.ilHFormFooter {
|
||||
padding: 4px 22px 4px 0;
|
||||
}
|
||||
|
||||
div.ilHFormContent {
|
||||
padding: 20px 10px 20px 0px;
|
||||
table {
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilHFormItem {
|
||||
margin-bottom: 5px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
div.ilHFormHeader .ilFormCmds, div.ilHFormFooter .ilFormCmds {
|
||||
float: right;
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilHFormHeader .ilFormCmds, [dir="rtl"] div.ilHFormFooter .ilFormCmds {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ilHFormExpIcon, .ilHFormCheckbox, .ilHFormIcon, .ilHFormInput, .ilHFormItemCmd {
|
||||
}
|
||||
|
||||
.ilHFormExpIcon, .ilHFormCheckbox, .ilHFormIcon {
|
||||
min-width: 20px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ilHFormItemCmd {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.ilHFormChilds {
|
||||
|
||||
}
|
||||
|
||||
.ilHFormExpIcon img, .ilHFormIcon img {
|
||||
width: 19px;
|
||||
height: 19px;
|
||||
}
|
||||
|
||||
.ilHFormInput, .ilHFormInput input.form-control {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ilHFormDropArea {
|
||||
margin: 6px 0;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/* deprecated */
|
||||
div.ilFormInfo {
|
||||
}
|
||||
|
||||
|
||||
/* experimental: bootstrap'ed file upload */
|
||||
.btn-file {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.btn-file input[type=file] {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
font-size: 100px;
|
||||
text-align: right;
|
||||
filter: alpha(opacity=0);
|
||||
opacity: 0;
|
||||
outline: none;
|
||||
background: white;
|
||||
cursor: inherit;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ilFormInnerCol {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ilFormInnerCol .form-group {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
input:invalid {
|
||||
background-color: #ffebeb;
|
||||
border-color: @il-danger-color;
|
||||
}
|
||||
|
||||
.bootstrap-datetimepicker-widget {
|
||||
z-index: 2000;
|
||||
}
|
||||
|
||||
/* provisory fix for #0021322 */
|
||||
div[id$="color-picker-menu"] {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
/* This is a memento that we should get rid of the legacy UI */
|
||||
.wzdrow input[type=file]:focus-visible {
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: 0;
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
/* Services/Help */
|
||||
|
||||
#ilHelpText .ilc_text_inline_Strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#ilHelpBack {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
#ilHelpText {
|
||||
clear: both;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
#ilHelpText .ilc_list_o_NumberedList,
|
||||
#ilHelpText .ilc_list_u_BulletedList {
|
||||
margin: 10px 0;
|
||||
padding: 0 0 0 25px;
|
||||
}
|
||||
|
||||
#ilHelpText .ilc_list_o_NumberedList .ilc_list_o_NumberedList,
|
||||
#ilHelpText .ilc_list_o_NumberedList .ilc_list_u_BulletedList,
|
||||
#ilHelpText .ilc_list_u_BulletedList .ilc_list_u_BulletedList,
|
||||
#ilHelpText .ilc_list_u_BulletedList .ilc_list_o_NumberedList {
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
a#ilHelpClose {
|
||||
display: block;
|
||||
float: right;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#ilHelpPanel .il_VAccordionHead {
|
||||
background-position: 3px 3px;
|
||||
padding: 5px 5px 5px 30px;
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#ilHelpPanel li {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#ilHelpPanel .ilGroupedListLE {
|
||||
padding: 5px 10px 5px 20px;
|
||||
}
|
||||
|
||||
#il_screen_id {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#mm_help li a span:first-child {
|
||||
width: 20px;
|
||||
display: inline-block;
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
/* Services/InfoScreen */
|
||||
div.ilInfoScreenSec {
|
||||
padding: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
div.ilInfoScreenSec h2.ilHeader {
|
||||
margin-bottom: 5px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.il_InfoScreenProperty {
|
||||
padding: 15px;
|
||||
vertical-align: top;
|
||||
color: @il-text-light-color;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.il_InfoScreenPropertyValue {
|
||||
padding: 15px;
|
||||
vertical-align: top;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
.ilInfoScreenSec.form-horizontal .form-group {
|
||||
margin: 0;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
.ilInfoScreenSec.form-horizontal {
|
||||
background-color: transparent;
|
||||
}
|
||||
.ilInfoScreenSec.form-horizontal .control-label {
|
||||
padding: 15px;
|
||||
line-height: normal;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
/* Services/Init */
|
||||
|
||||
div.ilStartupFrame {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.ilStartupSection {
|
||||
padding-top: 25px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
padding-top: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilStartupSection form.form-horizontal {
|
||||
text-align: left;
|
||||
width: 40em;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
div#il_startup_logo img {
|
||||
height: @il-logo-height;
|
||||
width: @il-logo-width;
|
||||
margin: @il-logo-margin;//15px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin: @il-logo-resp-margin;//10px;
|
||||
max-width: 100%;
|
||||
height: @il-logo-resp-height;
|
||||
width: @il-logo-resp-width;
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
.ilLearningHistoryShowMore {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ilPCLearnHist {
|
||||
background-color: @body-bg;
|
||||
padding: @padding-base-vertical @padding-base-horizontal;
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
.ilLike {
|
||||
padding: 5px 0px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.ilLike .modal {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.ilLike .modal .glyphicon {
|
||||
font-size: 160%;
|
||||
}
|
||||
|
||||
.ilLike .badge {
|
||||
margin-left: -7px;
|
||||
top: 7px;
|
||||
}
|
||||
|
||||
.ilLike .glyphicon {
|
||||
font-size: 130%;
|
||||
}
|
||||
|
||||
.ilLike .il-counter-spacer {
|
||||
margin-left: 0px;
|
||||
font-size: 9px;
|
||||
padding: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ilLike a {
|
||||
display: inline-block;
|
||||
/* padding: 2px 4px; */
|
||||
}
|
||||
|
||||
.ilLike a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ilLikeEmoticons {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ilLikeEmoticons a {
|
||||
display: inline-block;
|
||||
font-size: 140%;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.ilLikeEmoticons a:hover {
|
||||
text-decoration: none;
|
||||
/*background-color: @il-highlight-bg;*/
|
||||
background-color: #F0F0F0;
|
||||
}
|
||||
|
||||
.ilLike .il-item img {
|
||||
max-width: 50%;
|
||||
float:right;
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
/* Services/Mail */
|
||||
|
||||
a.mailread, a.mailread:visited {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
a.mailunread, a.mailunread:visited {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.iosMailFilter .checkbox {
|
||||
display: inline-block !important;
|
||||
margin: 0 10px !important;
|
||||
}
|
||||
|
||||
.iosMailFilter .checkbox:first-child {
|
||||
margin: 0 15px !important;
|
||||
}
|
||||
|
||||
.iosMailFilter .checkbox input[type="checkbox"] {
|
||||
margin-left: -15px !important;
|
||||
}
|
||||
|
||||
.ilMailAvatar {
|
||||
min-width: 45px !important;
|
||||
max-width: 45px !important;
|
||||
height: auto;
|
||||
}
|
||||
@@ -0,0 +1,458 @@
|
||||
// Default navbar
|
||||
#ilTopNav {
|
||||
margin: @il-main-menu-margin;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
min-height: 0;
|
||||
display: block;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
&.navbar {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
min-height: 33px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
min-height: 0;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
> .navbar-collapse {
|
||||
margin: 0;
|
||||
padding: 0 0 0 5px;
|
||||
&:empty {
|
||||
+ div.navbar-header {
|
||||
button.navbar-toggle {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.navbar-default {
|
||||
background-color: transparent;
|
||||
.reset-filter();
|
||||
border: 0 none;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
float: left;
|
||||
right: auto;
|
||||
left: 0;
|
||||
min-width: 100%;
|
||||
background-color: @il-main-menu-dropdown-bg;
|
||||
li {
|
||||
a{
|
||||
background-color: @il-main-menu-dropdown-link-bg;
|
||||
color: @il-main-menu-dropdown-link-color;
|
||||
&:hover{
|
||||
background-color: @il-main-menu-dropdown-link-hover-bg;
|
||||
color: @il-main-menu-dropdown-link-hover-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
float: none;
|
||||
left: auto;
|
||||
right: auto;
|
||||
}
|
||||
}
|
||||
.navbar-nav {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
float: none;
|
||||
margin-left: 0;
|
||||
}
|
||||
> li {
|
||||
margin: 0 0 0 10px;
|
||||
> a {
|
||||
margin: 0;
|
||||
padding: 5px 10px 6px;
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
border-top: 4px solid white;
|
||||
background-color: @il-main-menu-link-bg;
|
||||
color: @il-main-menu-link-color;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin: 0 10px 0 0;
|
||||
padding: 5px 10px 6px;
|
||||
border-top: 0;
|
||||
color: @il-main-menu-link-color;//darken(@ilMainMenuColor, 30%);
|
||||
}
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
background-color: @il-main-menu-link-hover-bg;
|
||||
color: @il-main-menu-link-hover-color;
|
||||
//outline: 0;
|
||||
//border-top: 4px solid @brand-primary;
|
||||
//box-shadow: 3px 9px 9px 0px rgba(0,0,0,0.176);
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
> .active > a,
|
||||
> .open > a {
|
||||
&,
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
//background-color: lighten(@ilMainMenuColor, 42%);
|
||||
outline: 0 none;
|
||||
border-top: 4px solid @il-main-color;
|
||||
background-color: @il-main-menu-link-active-bg;
|
||||
color: @il-main-menu-link-active-color;
|
||||
.box-shadow(3px 9px 9px 0px rgba(0,0,0,0.176));
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
border-top: 0 none;
|
||||
background-color: inherit;
|
||||
.box-shadow(none);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
button.navbar-toggle {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 40px;
|
||||
height: 40px;
|
||||
border-radius: 0;
|
||||
border-width: 0;
|
||||
background-color: @il-top-bar-link-bg;
|
||||
color: @il-top-bar-link-color;
|
||||
margin: 0;
|
||||
}
|
||||
.icon-bar {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
background-color: @il-top-bar-link-color;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
background-color: @il-top-bar-link-hover-bg;
|
||||
}
|
||||
.icon-bar {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
background-color: @il-top-bar-link-hover-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] #ilTopNav {
|
||||
.dropdown-menu {
|
||||
float: right;
|
||||
left: auto;
|
||||
right: 0;
|
||||
padding: 5px 0;
|
||||
text-align: right;
|
||||
}
|
||||
.navbar-nav {
|
||||
float: right;
|
||||
margin-left: 0;
|
||||
margin-right: 70px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin-right: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
> li {
|
||||
margin: 0 10px 0 0;
|
||||
> a {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
float: right;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.navbar > .navbar-collapse {
|
||||
padding: 0 5px 0 0;
|
||||
}
|
||||
button.navbar-toggle {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
left: auto;
|
||||
right: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
/* Main Menu Top Title */
|
||||
.ilTopTitle {
|
||||
float: left;
|
||||
font-weight: 600;
|
||||
padding: 0 0 0 15px;
|
||||
white-space: nowrap;
|
||||
line-height: 40px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] .ilTopTitle {
|
||||
float: right;
|
||||
padding: 0 15px 0 0;
|
||||
}
|
||||
|
||||
.ilTopTitleVisible {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
input.ilOpenIDBox {
|
||||
background: url("@{il-background-images-path}openid.png") no-repeat 1px 2px white;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
[dir="rtl"] input.ilOpenIDBox {
|
||||
background-position: 2px 1px;
|
||||
padding-left: 0;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
#ilTopBar.ilTopBar {
|
||||
padding: 0;
|
||||
height: 40px;
|
||||
top: 0;
|
||||
z-index: 1040;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
z-index: 1030;
|
||||
}
|
||||
}
|
||||
|
||||
.ilTopFixed {
|
||||
z-index: 1030;
|
||||
position: fixed;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#ilTopBarNav {
|
||||
float: right;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-right: 14px;
|
||||
list-style: none outside none;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin-right: 0;
|
||||
}
|
||||
.dropdown-menu {
|
||||
background-color: @il-top-bar-dropdown-bg;
|
||||
border-radius: 0;
|
||||
margin: 0;
|
||||
color: @il-top-bar-dropdown-color;
|
||||
a {
|
||||
background-color: @il-top-bar-dropdown-link-bg;
|
||||
color: @il-top-bar-dropdown-link-color;
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
background-color: @il-top-bar-dropdown-link-hover-bg;
|
||||
color: @il-top-bar-dropdown-link-hover-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
> li {
|
||||
float: left;
|
||||
display: block;
|
||||
position: relative;
|
||||
> a {
|
||||
margin-right: 1px;
|
||||
display: block;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
min-width: 40px;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
background-color: @il-top-bar-link-bg;
|
||||
color: @il-top-bar-link-color;
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
outline: 0 none;
|
||||
color: @il-top-bar-link-hover-color;
|
||||
text-decoration: none;
|
||||
background-color: @il-top-bar-link-hover-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
> .active > a,
|
||||
> .open > a {
|
||||
&,
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
outline: 0 none;
|
||||
color: @il-top-bar-link-hover-color;
|
||||
text-decoration: none;
|
||||
background-color: @il-top-bar-link-hover-bg;
|
||||
}
|
||||
}
|
||||
#userlog {
|
||||
> a {
|
||||
padding: 0 10px 0 0;
|
||||
img {
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
margin-right: 0px;
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
min-width: 100%;
|
||||
> li > a {
|
||||
padding-left: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] #ilTopBarNav {
|
||||
float: left;
|
||||
margin: 0;
|
||||
margin-left: 14px;
|
||||
text-align: right;
|
||||
.badge {
|
||||
margin-left: 0;
|
||||
margin-right: -5px;
|
||||
}
|
||||
.dropdown-menu {
|
||||
a {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
> li {
|
||||
float: right;
|
||||
}
|
||||
> li > a {
|
||||
margin-right: 1px;
|
||||
}
|
||||
#userlog {
|
||||
> a {
|
||||
padding: 0 0 0 10px;
|
||||
img {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ilMainHeader {
|
||||
background-color: @il-main-header-bg;
|
||||
height: @il-main-header-height;
|
||||
border-bottom: @il-header-border-bottom-height solid @il-header-border-bottom-color;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
height: auto;
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
&.ilTopFixed {
|
||||
top: @il-top-bar-height;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
height: 0;
|
||||
}
|
||||
}
|
||||
> header > .row > a.navbar-brand {
|
||||
height: auto;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
margin: @il-logo-margin;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
height: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
> img {
|
||||
display: inline-block;
|
||||
height: @il-logo-height;
|
||||
width: @il-logo-width;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: @il-logo-resp-height;
|
||||
width: @il-logo-resp-width;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] .ilMainHeader {
|
||||
> header > .row > a.navbar-brand {
|
||||
> img {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ilMainMenu {
|
||||
background-color: @il-main-menu-bg;//@body-bg;
|
||||
&.ilTopFixed {
|
||||
// This 7px seems arbitrary, no obvious choice for variable.
|
||||
// This is just to get the current 110px in the standard.
|
||||
top: floor((@il-header-height - 7px));
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
position: fixed;
|
||||
top: 40px;
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ilMainMenuEntries {
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
div.ilMemberViewMainHeader {
|
||||
background-color: #981a0a;
|
||||
}
|
||||
|
||||
div.ilTopMemberView {
|
||||
text-align: center;
|
||||
h3 {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
line-height: 40px;
|
||||
}
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.ilFixedTopSpacer {
|
||||
padding-top: @il-header-height;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin-top: 40px;
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.ilFixedTopSpacerBarOnly {
|
||||
padding-top: @il-top-bar-height;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin-top: 40px;
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
ul.il-mm-selfloading {
|
||||
width: 768px;
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
/* Services/MediaObjects */
|
||||
|
||||
.ilPlayerPreviewOverlayOuter {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ilPlayerPreviewOverlay {
|
||||
position: relative;
|
||||
width: 320px;
|
||||
height: 240px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ilPlayerPreviewDescription {
|
||||
padding: 7px;
|
||||
font-size: 85%;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
color: #f0f0f0;
|
||||
margin-top: -240px;
|
||||
background: url("@{il-background-images-path}black60.png");
|
||||
}
|
||||
|
||||
.ilPlayerPreviewOverlay img {
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ilPlayerPreviewDescriptionDownload {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ilPlayerPreviewDescriptionDownload a {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.mejs-overlay-button {
|
||||
background-image: url("@{il-background-images-path}bigplay.svg");
|
||||
}
|
||||
|
||||
.ilPlayerPreviewPlayButton {
|
||||
background: url("@{il-background-images-path}bigplay.svg") no-repeat scroll 0 0 transparent;
|
||||
height: 100px;
|
||||
left: 50%;
|
||||
margin: -50px 0 0 -50px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 100px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ilPlayerPreviewOverlay:hover .ilPlayerPreviewPlayButton {
|
||||
background-position: 0 -100px;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/* Services/Membership */
|
||||
|
||||
div.ilAttendanceListPrint td, div.ilAttendanceListPrint th {
|
||||
border: 1px solid @il-main-border-color;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
th.ilMembershipRowActionsHeader {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
th.ilMembershipRowActionsHeader span {
|
||||
padding-right: 6px;
|
||||
}
|
||||
|
||||
body.ilBodyPrint {
|
||||
height: auto;
|
||||
background-color: white;
|
||||
margin: 10px;
|
||||
padding: 0;
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
/* Services/Navigation */
|
||||
|
||||
form.ilNavHistoryForm {
|
||||
padding: 0;
|
||||
margin: 0 5px 0 0;
|
||||
padding: 5px 5px 2px;
|
||||
border: 0 none;
|
||||
display: inline;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
input.ilNavHistorySubmit {
|
||||
color: #2255a0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0 none;
|
||||
cursor: pointer;
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
select.ilNavHistorySelect {
|
||||
border: 0 none;
|
||||
padding: 0;
|
||||
background-image: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
@@ -0,0 +1,272 @@
|
||||
/* Services/News */
|
||||
|
||||
td.il-news {
|
||||
white-space:normal;
|
||||
.il-news-locator {
|
||||
margin: 2px 0px 4px 0px;
|
||||
}
|
||||
.ilIcon {
|
||||
vertical-align:middle
|
||||
}
|
||||
.il-news-content {
|
||||
clear:both;
|
||||
}
|
||||
.il-news-player {
|
||||
margin-top: 15px;
|
||||
max-width: 600px;
|
||||
}
|
||||
.il_BlockInfo {
|
||||
text-align:right;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
td.il-news {
|
||||
white-space: normal !important;
|
||||
}
|
||||
}
|
||||
|
||||
span.ilNewsRssIcon {
|
||||
background-color: @il-warning-color;
|
||||
color: white;
|
||||
min-width: 36px;
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
padding: 0 5px;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
background-color: darken(@il-warning-color, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
/* timeline, see http://codepen.io/jasondavis/pen/fDGdK */
|
||||
|
||||
.ilTimeline {
|
||||
list-style: none;
|
||||
padding: 20px 0;
|
||||
position: relative;
|
||||
&:before {
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
content: " ";
|
||||
width: 3px;
|
||||
background-color: @il-main-border-dark-color;
|
||||
left: 50%;
|
||||
margin-left: -1.5px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
left: 90%;
|
||||
}
|
||||
}
|
||||
> li {
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
margin-right: 50%;
|
||||
&:nth-child(even) {
|
||||
margin-left: 50%;
|
||||
margin-right: 0;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin-left: 0;
|
||||
}
|
||||
> .ilTimelineBadge {
|
||||
left: 0;
|
||||
margin-left: -25px;
|
||||
right: auto;
|
||||
margin-right: 0;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
right: auto;
|
||||
left: 90%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
margin-right: 0;
|
||||
}
|
||||
&:before, &:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
&:after {
|
||||
clear: both;
|
||||
}
|
||||
> .ilTimelinePanel {
|
||||
width: 88%;
|
||||
float: left;
|
||||
padding: 20px;
|
||||
position: relative;
|
||||
background: @il-main-bg;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 80%;
|
||||
}
|
||||
&:after {
|
||||
position: absolute;
|
||||
top: 27px;
|
||||
right: -14px;
|
||||
display: inline-block;
|
||||
border-top: 14px solid transparent;
|
||||
border-left: 14px solid @il-main-bg;
|
||||
border-right: 0 solid @il-main-bg;
|
||||
border-bottom: 14px solid transparent;
|
||||
content: " ";
|
||||
}
|
||||
}
|
||||
> .ilTimelineBadge {
|
||||
color: white;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
padding-top: 8px;
|
||||
line-height: 1.2em;
|
||||
font-size: 1em;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
background-color: @il-neutral-light-color;
|
||||
z-index: 100;
|
||||
border-radius: 50%;
|
||||
right: 0;
|
||||
margin-right: -25px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
left: 90%;
|
||||
right: auto;
|
||||
margin-left: -25px;
|
||||
}
|
||||
> .ilTimelineDay {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
> .ilTimelineMonth {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
> p {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
&:nth-child(even) > .ilTimelinePanel {
|
||||
float: right;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
float: left;
|
||||
}
|
||||
&:before {
|
||||
border-left-width: 0;
|
||||
border-right-width: 15px;
|
||||
left: -15px;
|
||||
right: auto;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
border-left-width: 15px;
|
||||
border-right-width: 0;
|
||||
right: auto;
|
||||
right: -15px;
|
||||
}
|
||||
}
|
||||
&:after {
|
||||
border-left-width: 0;
|
||||
border-right-width: 14px;
|
||||
left: -14px;
|
||||
right: auto;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
border-left-width: 14px;
|
||||
border-right-width: 0;
|
||||
left: auto;
|
||||
right: -14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.media-heading {
|
||||
clear: right;
|
||||
margin-top: 8px;
|
||||
}
|
||||
div.ilNotesHeader {
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
}
|
||||
|
||||
.ilNewsTimelineTruncatedText {
|
||||
/*overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;*/
|
||||
}
|
||||
|
||||
.ilNewsTimelineObjHead img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
|
||||
.ilNewsTimelinePlayer {
|
||||
position: relative;
|
||||
z-index: 500;
|
||||
}
|
||||
|
||||
.ilNewsTimelineUserImage {
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
width: 100px;
|
||||
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilNewsTimelineUserImage img {
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilNewsTimelineContentSection {
|
||||
padding-left: 100px;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
padding-left: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilNewsTimelineEditInfo {
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
.ilNewsTimelineMoreLoader {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ilNewsTimelineMoreLoader img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
/* https://github.com/JoanClaret/jquery-dynamic-max-height */
|
||||
.dynamic-height-wrap {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
.transition(max-height 0.25s ease-in-out);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Bottom gradient (optional, but recommended)*/
|
||||
.dynamic-height-active .dynamic-height-wrap:before {
|
||||
background: linear-gradient(to bottom, rgba(240,249,255,0) 0%,white 100%);
|
||||
bottom: 0;
|
||||
content: '';
|
||||
height: 30px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.dynamic-height-active .dynamic-show-more {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dynamic-show-more {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ilTimeline .ilNotes {
|
||||
margin: 0 -20px -20px -20px;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
/* Services/Notes */
|
||||
|
||||
#notes_embedded_outer {
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
#notes_embedded_outer .il_ContainerItemCommands {
|
||||
padding-top: 15px;
|
||||
}
|
||||
div.ilNotes {
|
||||
background-color: @il-main-bg;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#ilRightPanel div.ilNotes {
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
div.ilNotes .fullwidth_invisible {
|
||||
background-color: transparent;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
div.ilComment {
|
||||
padding-left: 50px;
|
||||
}
|
||||
|
||||
div.ilNotesUImage {
|
||||
float: left;
|
||||
margin-left: -50px;
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilNoteText {
|
||||
font-size: 95%;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
div.ilNotesHeader {
|
||||
background-color: @il-main-dark-bg;
|
||||
margin-bottom: 5px;
|
||||
padding: @padding-base-vertical @padding-base-horizontal;
|
||||
h3 {
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#il_center_col {
|
||||
div.ilNotesHeader {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#ilRightPanel div.ilNotesHeader {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
h3.ilNotesHeader {
|
||||
font-size: 110%;
|
||||
color: @il-text-color;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
h4.ilNoteTitle {
|
||||
font-size: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
td.ilNoteList {
|
||||
padding: 10px 5px;
|
||||
border-top: 1px solid @il-main-border-color;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
textarea#note {
|
||||
height: 6em;
|
||||
}
|
||||
|
||||
div.ilNoteInput {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.ilNotesCheckboxes {
|
||||
.ilComment {
|
||||
padding-left: 80px;
|
||||
}
|
||||
.ilNoteList input[type="checkbox"] {
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
/* Services/Object */
|
||||
|
||||
div.ilCreationFormSection {
|
||||
//width: 700px;
|
||||
}
|
||||
|
||||
div.ilCreationFormSection div.ilForm {
|
||||
//width: 699px;
|
||||
}
|
||||
|
||||
div.ilCreationFormSection div.ilForm div.ilForm {
|
||||
//width: auto;
|
||||
}
|
||||
|
||||
.ilHeadAction img {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
|
||||
.il_ItemProperty .badge{
|
||||
font-size: 8px;
|
||||
padding: 2px 4px;
|
||||
margin-top: -1px;
|
||||
margin-left: -5px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
div.ilCreationFormSection .form-horizontal {
|
||||
margin-top: -1px;
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
.ilObjListRow {
|
||||
border-bottom: @il-item-border-bottom;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
//mantis #0017866
|
||||
.table-striped {
|
||||
border-collapse: separate;
|
||||
> tbody > tr.ilObjListRow {
|
||||
> td {
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
&:hover {
|
||||
> td {
|
||||
background-color: lighten(@il-highlight-bg, 5%);
|
||||
}
|
||||
&:nth-child(2n+1) {
|
||||
> td {
|
||||
background-color: lighten(@il-highlight-bg, 5%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,314 @@
|
||||
[data-onscreenchat-inact-userid] {
|
||||
opacity: .3 !important;
|
||||
}
|
||||
|
||||
.ilOnScreenChatWindowHeaderTooltip {
|
||||
ul {
|
||||
text-align: left;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#onscreenchat-container {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
/*height: 100px;*/
|
||||
overflow: visible;
|
||||
pointer-events: none;
|
||||
z-index: 1039;
|
||||
|
||||
.iosOnScreenChat{
|
||||
margin-right: -3px;
|
||||
}
|
||||
|
||||
.popover {
|
||||
max-width: 200px;
|
||||
min-height: 100px;
|
||||
word-break: break-word;
|
||||
a {
|
||||
border: 1px solid white;
|
||||
padding: 1px 0 1px 2px;
|
||||
|
||||
&:hover {
|
||||
border: 1px solid silver;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 19px;
|
||||
max-height: 19px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.row{
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.chat-window-wrapper {
|
||||
bottom: 0;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
width: 278px;
|
||||
height: 377px;
|
||||
background-color: @body-bg;
|
||||
|
||||
&:last-child {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.chat-img img {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
li.left .chat-img {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
li.right .chat-img {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.iosOnScreenChatBodyMsg {
|
||||
overflow-x: hidden;
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
-ms-hyphens: auto;
|
||||
-moz-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
.iosOnScreenChatMessageContainer {
|
||||
background-color: transparent;
|
||||
|
||||
.iosOnScreenChatMessagePlaceholder {
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
border: 0 none !important;
|
||||
background-color: transparent;
|
||||
opacity: .5;
|
||||
}
|
||||
|
||||
.iosOnScreenChatMessage {
|
||||
background-color: transparent;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
white-space: pre-wrap;
|
||||
user-select: text;
|
||||
outline: none;
|
||||
overflow-x: hidden;
|
||||
height: auto;
|
||||
min-height: 26px;
|
||||
max-height: 75px;
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-all;
|
||||
word-break: break-word;
|
||||
-ms-hyphens: auto;
|
||||
-moz-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
cursor: text;
|
||||
padding-right: 26px;
|
||||
}
|
||||
}
|
||||
|
||||
.osc_truncate_username{
|
||||
width: 150px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: inline-block;
|
||||
}
|
||||
.text-muted-left{
|
||||
width: 160px;
|
||||
margin-top: -4px;
|
||||
text-align: right;
|
||||
}
|
||||
.text-muted-right{
|
||||
width: 160px;
|
||||
margin-top: -4px;
|
||||
text-align: left;
|
||||
}
|
||||
.osc_truncate_username_left{
|
||||
width: 160px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: inline-block;
|
||||
margin-bottom: -5px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.osc_truncate_username_right{
|
||||
width: 160px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.chat {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
li.separator:not(:first-child) {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
li.header:not(:first-child) {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
li {
|
||||
padding-bottom: 5px;
|
||||
|
||||
&.separator {
|
||||
text-align: center;
|
||||
background-color: @il-main-dark-bg;
|
||||
|
||||
p {
|
||||
font-size: .9em;
|
||||
}
|
||||
}
|
||||
|
||||
&.header, &.message {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
&.message.right {
|
||||
.chat-body {
|
||||
text-align: justify;
|
||||
float: right;
|
||||
max-width: 85%;
|
||||
}
|
||||
}
|
||||
|
||||
&.message.left {
|
||||
.chat-body {
|
||||
text-align: justify;
|
||||
width: 85%;
|
||||
}
|
||||
}
|
||||
|
||||
.chat-body {
|
||||
.header {
|
||||
strong {
|
||||
font-size: .8em;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
color: #777;
|
||||
font-size: .9em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.panel {
|
||||
pointer-events: auto;
|
||||
margin: 0;
|
||||
border: 1px solid #dcdcdc;
|
||||
|
||||
.panel-heading {
|
||||
font-size: 80%;
|
||||
display: block;
|
||||
padding: 5px 5px 5px 15px;
|
||||
pointer-events: auto;
|
||||
margin: 0;
|
||||
vertical-align: middle;
|
||||
|
||||
.btn {
|
||||
padding: 0 4px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
vertical-align: sub;
|
||||
}
|
||||
|
||||
.close {
|
||||
margin-top: -2px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.panel .slidedown .glyphicon, .chat .glyphicon {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
height: auto;
|
||||
overflow-y: scroll;
|
||||
position: relative;
|
||||
height: 250px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-bottom: 0;
|
||||
|
||||
.fader {
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
|
||||
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
|
||||
}
|
||||
}
|
||||
|
||||
.panel-footer {
|
||||
position: relative;
|
||||
border-top: none;
|
||||
padding-top: 15px ;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.iosOnScreenChatEmoticonsPanel {
|
||||
position: absolute;
|
||||
float: right;
|
||||
bottom: 21px;
|
||||
z-index: 3;
|
||||
right: 28px;
|
||||
|
||||
> a {
|
||||
display: block;
|
||||
height: 14px;
|
||||
width: 14px;
|
||||
background: url("@{il-background-images-path}emoticons_trigger.png") no-repeat;
|
||||
background-size: cover;
|
||||
z-index: 1000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.iosOnScreenChatModalBody {
|
||||
.ui-menu-item {
|
||||
padding: 5px;
|
||||
}
|
||||
.ui-menu-item-wrapper {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
}
|
||||
|
||||
.ilOnScreenChatSearchLoader {
|
||||
vertical-align: middle;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
margin-left: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
@@ -0,0 +1,186 @@
|
||||
/* ilPreview classes */
|
||||
.il_ContainerItemPreview {
|
||||
font-size: 11px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.ilPreviewList {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.ilPreviewItem {
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.ilPreviewItem img {
|
||||
border: 1px solid #D6D6D6;
|
||||
-webkit-box-shadow: 0 0 5px #D2D5D8;
|
||||
box-shadow: 0 0 5px #D2D5D8;
|
||||
}
|
||||
.ilPreviewText {
|
||||
font-size: 90%;
|
||||
margin-top: -20px;
|
||||
color: @il-neutral-color;
|
||||
}
|
||||
.ilPreviewTextLoading {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
background: transparent url("@{il-background-images-path}loader.svg") no-repeat 0 0;
|
||||
display: none;
|
||||
}
|
||||
.ilPreviewActions a.submit,
|
||||
.ilPreviewActions a.submit:hover {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.ilPreviewActions a.ilPreviewActionHidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ilPreviewStatusNone {
|
||||
filter: alpha(opacity=60);
|
||||
-moz-opacity: 0.60;
|
||||
opacity: 0.60;
|
||||
}
|
||||
|
||||
/* tooltip */
|
||||
#qtip-preview {
|
||||
max-width: none;
|
||||
min-width: 50px;
|
||||
line-height: normal;
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0.47) 0 0 7px 0;
|
||||
box-shadow: rgba(0, 0, 0, 0.47) 0 0 7px 0;
|
||||
background-color: white;
|
||||
border-collapse: separate;
|
||||
font-size: 14px;
|
||||
padding: 0;
|
||||
border: 1px solid #D1D1D1;
|
||||
}
|
||||
#qtip-preview .qtip-titlebar {
|
||||
background: white;
|
||||
padding: 14px 20px 10px 20px;
|
||||
}
|
||||
#qtip-preview .qtip-content {
|
||||
background: white;
|
||||
padding: 0 20px 20px;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
#qtip-preview .qtip-title {
|
||||
background: transparent;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#qtip-preview .qtip-close {
|
||||
right: 20px;
|
||||
top: 14px;
|
||||
margin-top: 0;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
background: transparent url("@{il-background-images-path}preview_close.png") no-repeat 0 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
#qtip-preview .qtip-close:hover {
|
||||
background-position-x: -16px;
|
||||
}
|
||||
#qtip-preview .ui-icon-close {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ilPreviewTooltipContent {
|
||||
position: relative;
|
||||
background: #F8F8F8;
|
||||
border: 1px solid #E9E9E9;
|
||||
padding: 0;
|
||||
}
|
||||
.ilPreviewTooltipContent .ilPreviewList {
|
||||
display: block;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
margin: 0 20px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.ilPreviewTooltipPrev {
|
||||
position: absolute;
|
||||
background: transparent url("@{il-background-images-path}preview_arrows.png") no-repeat 0 0;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
margin-top: -25px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ilPreviewTooltipPrev:hover {
|
||||
background-position-x: -30px;
|
||||
}
|
||||
.ilPreviewTooltipPrev.ilPreviewDisabled {
|
||||
opacity: 0.4;
|
||||
cursor: default;
|
||||
background-position-x: -60px;
|
||||
}
|
||||
|
||||
.ilPreviewTooltipNext {
|
||||
position: absolute;
|
||||
background: transparent url("@{il-background-images-path}preview_arrows.png") no-repeat 0 -40px;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
margin-top: -25px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ilPreviewTooltipNext:hover {
|
||||
background-position-x: -30px;
|
||||
}
|
||||
.ilPreviewTooltipNext.ilPreviewDisabled {
|
||||
opacity: 0.4;
|
||||
cursor: default;
|
||||
background-position-x: -60px;
|
||||
}
|
||||
|
||||
/* inline */
|
||||
.ilPreviewInline {
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
.ilPreviewInlineTable {
|
||||
/* width: 100%; //provisory fix for #12096 */
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.ilPreviewInlineRow {
|
||||
display: table-row;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.ilPreviewInlineCell {
|
||||
display: table-cell;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.ilPreviewInlineContent {
|
||||
overflow: auto;
|
||||
}
|
||||
.ilPreviewInlineContent .ilPreviewList {
|
||||
padding: 0 0 5px 0;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
}
|
||||
.ilPreviewInlineContent .ilPreviewItem {
|
||||
display: inline-block;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
.ilPreviewInlineContent .ilPreviewItem img {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.ilPreviewInlineContent .ilPreviewText {
|
||||
font-size: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/* Services/Rating */
|
||||
|
||||
img.ilRatingIcon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
img.ilRatingMarker {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
}
|
||||
|
||||
a.ilRating {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
div.ilRatingOverlay {
|
||||
z-index: 1000 !important;
|
||||
padding: 0 5px;
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
#ilMMSearch ul li {
|
||||
padding: 5px;
|
||||
label {
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
|
||||
#ilMMSearchMenu {
|
||||
legend {
|
||||
margin-bottom: 0;
|
||||
margin-top: 20px;
|
||||
font-size: 16px;
|
||||
border-bottom: 0;
|
||||
}
|
||||
p {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
#main_menu_search {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
#ilTopBarNav .dropdown-menu #ilMMSearchMenu a {
|
||||
&,
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
background-color: @il-top-bar-dropdown-link-bg;
|
||||
color: @il-top-bar-dropdown-link-color;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilMainMenuSearch {
|
||||
padding: 0 10px 3px;
|
||||
margin: 1px 0 2px -1px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
input.ilMainMenuSearch {
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
color: @il-text-color;
|
||||
width: 150px;
|
||||
padding: 2px 4px 1px;
|
||||
margin: 0;
|
||||
background-color: white;
|
||||
min-height: 16px;
|
||||
.box-shadow(inset 1px 1px 2px #a0a0a0);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
#mm_search_menu_head {
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 5px;
|
||||
font-size: 85%;
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
input {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#il_search_toolbar {
|
||||
> div{
|
||||
padding-top: @il-padding-large-vertical;
|
||||
}
|
||||
div.ilFormOption {
|
||||
width: auto;
|
||||
}
|
||||
div.ilFormFooter {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#mm_search_menu_ac .ui-menu {
|
||||
border: 0 none;
|
||||
.box-shadow(none);
|
||||
color: @il-text-color;
|
||||
}
|
||||
|
||||
span.ilSearchHighlight {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.il_SearchFragment {
|
||||
margin: 2px 0 5px;
|
||||
font-size: 80%;
|
||||
font-weight: normal;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#ilSearchResultsTable.table-striped > tbody > tr > td {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#search_area_form {
|
||||
min-width: 350px;
|
||||
.form-horizontal .control-label {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
/* Services/Skill */
|
||||
|
||||
div.ilSkill {
|
||||
background: @il-main-dark-bg;
|
||||
padding: 15px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
div.ilSkill > h3 {
|
||||
margin: 10px 0;
|
||||
padding: 0;
|
||||
font-size: 1.2em;
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.ilSkill > h4 {
|
||||
margin: 10px 0;
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
color: @il-text-light-color;
|
||||
float: left;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
table.ilSkill, td.ilSkill, th.ilSkill {
|
||||
border: 1px solid @il-main-border-color;
|
||||
}
|
||||
|
||||
div.ilSkillActions {
|
||||
margin-top: -5px;
|
||||
margin-right: 15px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
div.ilSkill .ilSkillActions {
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
table.ilSkill {
|
||||
margin-bottom: 5px;
|
||||
margin-left: 50px;
|
||||
background-color: white;
|
||||
border-collapse: collapse;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
td.ilSkill, th.ilSkill {
|
||||
font-size: .8em;
|
||||
padding: 4px;
|
||||
min-width: 50px;
|
||||
}
|
||||
|
||||
td.ilSkill {
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
td.ilSkillLevel {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
th.ilSkill, td.ilSkillLevel{
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
td.ilSkillSelf {
|
||||
background-color: #fff0e0;
|
||||
}
|
||||
|
||||
td.ilSkillMat {
|
||||
background-color: #f0f0ff;
|
||||
}
|
||||
|
||||
div.ilSkillSuggRes {
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
th.ilSkillEntryHead {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.ilSkillEvalItem {
|
||||
border-left: 5px solid;
|
||||
margin: 2px 0;
|
||||
padding: 10px;
|
||||
|
||||
> .row > div {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.ilSkillEvalItem.ilSkillEvalType1 {
|
||||
border-color: @il-extended-color-3;
|
||||
}
|
||||
|
||||
.ilSkillEvalItem.ilSkillEvalType2 {
|
||||
border-color: @il-extended-color-2;
|
||||
}
|
||||
|
||||
.ilSkillLevelDescription, .ilSkillMaterial, .ilSkillSuggResources {
|
||||
padding: 5px 10px 5px 15px;
|
||||
> .row > div {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilSkillResourceList {
|
||||
> h5 {
|
||||
margin-top:25px;
|
||||
}
|
||||
> div {
|
||||
padding: 5px 10px 5px 15px;
|
||||
> .row > div {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.ilSkillEvalItem.ilSkillEvalType3 {
|
||||
border-color: darken(@il-secondary-color, 10%);
|
||||
}
|
||||
|
||||
.ilSkillEvalItem > .row > .ilSkillEvalType1 {
|
||||
color: @il-extended-color-3;
|
||||
}
|
||||
|
||||
.ilSkillEvalItem > .row > .ilSkillEvalType2 {
|
||||
color: @il-extended-color-2;
|
||||
}
|
||||
|
||||
.ilSkillEvalItem > .row > .ilSkillEvalType3 {
|
||||
color: darken(@il-secondary-color, 10%);
|
||||
}
|
||||
|
||||
.ilSkillFilter .ilToolbar select.form-control {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ilSkillCategoryDescription {
|
||||
margin: 0px 5px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
/* Services/Style */
|
||||
|
||||
.ilPositionStatic {
|
||||
position: static;
|
||||
}
|
||||
|
||||
/* PageLayout Previews */
|
||||
div.ilc_QuestionPlaceHolderThumb,
|
||||
div.ilc_MediaPlaceHolderThumb,
|
||||
div.ilc_TextPlaceHolderThumb,
|
||||
div.ilc_PredTextPlaceHolderThumb {
|
||||
margin: 1px;
|
||||
padding: 5px 2px 5px 0;
|
||||
border: 1px solid @il-neutral-color;
|
||||
font-size: 10px;
|
||||
background: url("@{il-background-images-path}question_placeholder_thumb.png") no-repeat center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.ilc_MediaPlaceHolderThumb {
|
||||
background-image: url("@{il-background-images-path}media_placeholder_thumb.png");
|
||||
}
|
||||
|
||||
div.ilc_TextPlaceHolderThumb {
|
||||
background-image: url("@{il-background-images-path}text_placeholder_thumb.png");
|
||||
}
|
||||
|
||||
div.ilc_PredTextPlaceHolderThumb {
|
||||
background-image: url("@{il-background-images-path}pred_text_placeholder_thumb.png");
|
||||
}
|
||||
|
||||
div.ilc_HeadlineThumb {
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid @il-neutral-color;
|
||||
color: @il-text-color;
|
||||
margin: 2px 0 4px;
|
||||
}
|
||||
@@ -0,0 +1,288 @@
|
||||
/* Services/Table */
|
||||
|
||||
div.tblfooter {
|
||||
font-weight: normal;
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 3px;
|
||||
font-size: 80%;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.ilTableNav {
|
||||
font-weight: normal;
|
||||
padding: 0 3px;
|
||||
font-size: 80%;
|
||||
text-align: right;
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
select {
|
||||
//See Issue #32398
|
||||
display: inline-block;
|
||||
}
|
||||
.ilFloatRight .ilOverlay{
|
||||
//See Issue #32363
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
td.tblfooter {
|
||||
}
|
||||
|
||||
tr.tblfooter {
|
||||
color: @il-text-color;
|
||||
font-weight: normal;
|
||||
background-color: @il-main-dark-bg;
|
||||
border-top: 1px solid @il-content-bg;
|
||||
}
|
||||
|
||||
.tblrow1 {
|
||||
}
|
||||
|
||||
.tblrow2 {
|
||||
}
|
||||
|
||||
|
||||
td.submit {
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
div.ilTableHeaderTitleBlock {
|
||||
font-weight: bold;
|
||||
padding: 3px;
|
||||
font-size: 90%;
|
||||
color: @il-text-color;
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
}
|
||||
|
||||
div.ilTableHeaderTitle {
|
||||
margin: 15px 0 0;
|
||||
padding: 0;
|
||||
+ .ilHeaderDesc {
|
||||
margin: 0 0 5px;
|
||||
}
|
||||
}
|
||||
|
||||
h3.ilTableHeaderTitleBlock {
|
||||
font-weight: bold;
|
||||
font-size: 100%;
|
||||
display: inline;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h3.ilTableHeaderTitle {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
div.ilTableOuter {
|
||||
padding: 0;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
|
||||
div.ilTableSelectAll {
|
||||
background-color: @il-main-bg;
|
||||
padding: 6px 8px;
|
||||
font-size: 90%;
|
||||
border-top: 1px solid @il-main-border-color;
|
||||
}
|
||||
|
||||
div.ilTableSelectAll label {
|
||||
padding-left: 13px;
|
||||
}
|
||||
|
||||
div.ilTableCommandRow, div.ilTableCommandRowTop {
|
||||
background-color: @il-table-cmd-bg;
|
||||
padding: 5px 8px;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
div.ilTableCommandRowTop {
|
||||
}
|
||||
|
||||
span.ilTableFootLight {
|
||||
color: @il-text-color;
|
||||
}
|
||||
|
||||
div.ilTableFilterActivator {
|
||||
margin: 0 0 5px 3px;
|
||||
}
|
||||
|
||||
.ilTableMenuItem {
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
|
||||
div.ilTableFilter {
|
||||
padding: 0 0 5px 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
legend.ilTableFilter {
|
||||
font-size: 80%;
|
||||
border: none;
|
||||
padding: 2px 5px;
|
||||
margin: -12px 0 0;
|
||||
font-weight: normal;
|
||||
text-align: right;
|
||||
> a {
|
||||
margin-right: -20px;
|
||||
margin-top: -15px;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset.ilTableFilter {
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 10px 15px;
|
||||
margin: 5px 0 15px 0;
|
||||
}
|
||||
|
||||
div.ilTableFilterLabel {
|
||||
font-style: italic;
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 3px 0px;
|
||||
}
|
||||
|
||||
div.ilTableFilterLabel label {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.ilTableFilterInput {
|
||||
min-width: 150px;
|
||||
padding: 0 0 5px 0;
|
||||
}
|
||||
|
||||
div.ilTableFilterInput select {
|
||||
width: 100%;
|
||||
max-width: 150px;
|
||||
}
|
||||
|
||||
div.ilTableFilterInput .radio, div.ilTableFilterInput .checkbox {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
td.ilFilterOption {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
font-size: 80%;
|
||||
white-space: nowrap;
|
||||
padding: 0 10px 10px 0;
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
|
||||
td.ilFilterType {
|
||||
font-size: 80%;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
white-space: nowrap;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
div.ilTableContainer {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.tblheader {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
tr.tblheader {
|
||||
font-weight: normal;
|
||||
background-color: @il-main-dark-bg;
|
||||
font-size: 90%;
|
||||
border-bottom: 1px solid #d6d6d6;
|
||||
}
|
||||
|
||||
/* ---------------- alternating tablerowcolors ----------------- */
|
||||
.tblrow2_mo {
|
||||
background-color: @il-content-bg;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.tblrow1_mo {
|
||||
background-color: white;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.tblrow1_mo:hover, .tblrow2_mo:hover {
|
||||
background-color: #d0d0ff;
|
||||
}
|
||||
|
||||
.tblrowmarked {
|
||||
background-color: #ffe4e4 !important;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.tblrow2top {
|
||||
background-color: @il-content-bg;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.tblrow1top {
|
||||
background-color: white;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.tblrowmarkedtop {
|
||||
background-color: #ffe4e4;
|
||||
color: @il-text-color;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
div.ilTableCommandRowTop {
|
||||
}
|
||||
|
||||
.table > thead > tr > th {
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
background-color: @il-table-head-bg;
|
||||
}
|
||||
|
||||
.ilTableOuter .table {
|
||||
background-color: @il-data-table-bg;
|
||||
}
|
||||
|
||||
td > img[src$="icon_custom.svg"] {
|
||||
max-width: 32px;
|
||||
}
|
||||
|
||||
.ilTableCommandRowTop, .ilTableCommandRow {
|
||||
.ilFloatLeft {
|
||||
img, select {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Because of an issue ion Bootstrap when using Dropdown in Tables we need this. See https://github.com/twbs/bootstrap/issues/11037
|
||||
@media (max-width: 767px) {
|
||||
.table-responsive .dropdown-menu,
|
||||
.table-responsive .dropdown-toggle {
|
||||
//position: static !important; // Removed due to https://mantis.ilias.de/view.php?id=22175
|
||||
}
|
||||
}
|
||||
|
||||
//Note this is fixes the responsive view for the legacy table. In future we should rather move to truly responsive tables.
|
||||
//See #27833
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
.table-responsive{
|
||||
overflow-x: auto;
|
||||
max-width: 94vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: @grid-float-breakpoint-max) {
|
||||
.table-responsive {
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
/* Services/Tags */
|
||||
|
||||
.ilTagCloud {
|
||||
font-size: @font-size-small;
|
||||
padding: @padding-large-vertical @padding-large-horizontal;
|
||||
}
|
||||
|
||||
.ilTag {
|
||||
background-color: @il-btn-tag-bg;
|
||||
/* background-color: lighten(@brand-primary, 10%); */
|
||||
color: @il-btn-tag-fg-relevance-veryhigh;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
padding: 1px 5px;
|
||||
margin: 2px 4px 2px 0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
a.ilTag:hover, a.ilTag:active {
|
||||
text-decoration: none;
|
||||
color: @il-btn-tag-fg-relevance-veryhigh;
|
||||
background-color: darken(@il-btn-tag-bg, 5%);
|
||||
}
|
||||
|
||||
.ilTagRelVeryHigh {
|
||||
|
||||
}
|
||||
.ilTagRelHigh {
|
||||
background-color: @il-btn-tag-bg-relevance-high;
|
||||
color: @il-btn-tag-fg-relevance-high;
|
||||
}
|
||||
.ilTagRelMiddle {
|
||||
background-color: @il-btn-tag-bg-relevance-middle;
|
||||
color: @il-btn-tag-fg-relevance-middle;
|
||||
}
|
||||
.ilTagRelLow {
|
||||
background-color: @il-btn-tag-bg-relevance-low;
|
||||
color: @il-btn-tag-fg-relevance-low;
|
||||
}
|
||||
.ilTagRelVeryLow {
|
||||
background-color: @il-btn-tag-bg-relevance-verylow;
|
||||
color: @il-btn-tag-fg-relevance-verylow;
|
||||
}
|
||||
|
||||
.ilTag.ilHighlighted {
|
||||
background-color: @badge-bg;
|
||||
}
|
||||
|
||||
#il_tags_modal textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
#tos_documents {
|
||||
td.std .dropdown {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
+138
@@ -0,0 +1,138 @@
|
||||
/* Services/UIComponent/AdvancedSelectionList */
|
||||
|
||||
div.il_adv_sel {
|
||||
border: 1px solid #d6d6d6;
|
||||
.box-shadow(2px 2px 4px #c0c0c0);
|
||||
}
|
||||
|
||||
table.il_adv_sel {
|
||||
color: black;
|
||||
background-color: white;
|
||||
border-spacing: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
tr.il_adv_sel {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
tr.il_adv_sel_act {
|
||||
background-color: #fff9bc;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
td.il_adv_sel {
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
padding: 3px 10px;
|
||||
text-align: left;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#ilAdvSelListTable_item_creation td.il_adv_sel {
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
td.il_adv_sel_ic {
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
padding: 3px 0 3px 10px;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
td.ilAsyncImgLoader {
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
span[id^="ilAdvSelListAnchorElement_"] + div {
|
||||
position: absolute;
|
||||
z-index: 5000;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
div[id^="ilAdvSelListTable_"] {
|
||||
overflow: auto;
|
||||
background-color: white;
|
||||
clear: both;
|
||||
display: none;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
//mantis #0017724, 17884, #17943
|
||||
#ilAdvSelListAnchorText_asl + ul.dropdown-menu > li > div.row,
|
||||
#ilAdvSelListAnchorText_asl + .dropdown-backdrop + ul.dropdown-menu > li > div.row,
|
||||
#mm_adm_tr + span + ul.dropdown-menu > li > div.row,
|
||||
#mm_adm_tr + ul.dropdown-menu > li > div.row {
|
||||
@media only screen and (min-width: @screen-lg-min) {
|
||||
.row{
|
||||
width: auto;
|
||||
}
|
||||
ul{
|
||||
min-width: 250px;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 100% !important;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
#ilAdvSelListAnchorText_asl + ul.dropdown-menu > li > div.row
|
||||
{
|
||||
@media only screen and (max-width: @screen-md-min){
|
||||
min-width: 260px;
|
||||
}
|
||||
@media only screen and (min-width: @screen-md-min) and (max-width: @screen-lg-min){
|
||||
min-width: 520px;
|
||||
}
|
||||
@media only screen and (min-width: @screen-lg-min) {
|
||||
min-width: 780px;
|
||||
}
|
||||
}
|
||||
#ilAdvSelListAnchorText_asl + ul.dropdown-menu {
|
||||
@media only screen and (max-width: @screen-sm-min) {
|
||||
position: absolute;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
}
|
||||
|
||||
div.ilNewObjectSelector {
|
||||
display: block;
|
||||
text-align: right;
|
||||
margin-bottom: 8px;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
> .btn-group.open {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
#ilAdvSelListAnchorText_asl {
|
||||
float: right;
|
||||
}
|
||||
#ilAdvSelListAnchorText_asl + .dropdown-menu {
|
||||
top: 30px;
|
||||
right: 0;
|
||||
left: auto;
|
||||
.dropdown-header{
|
||||
margin-right:1px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilNewObjectSelector {
|
||||
> .btn-group {
|
||||
#ilAdvSelListAnchorText_asl {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#il-add-new-item-gl {
|
||||
h2, a {
|
||||
white-space: break-spaces;
|
||||
}
|
||||
}
|
||||
+95
@@ -0,0 +1,95 @@
|
||||
/* Services/UIComponent/Button */
|
||||
|
||||
/*
|
||||
Important: those classes and less are deprecated. Relevant Button less has been moved
|
||||
the respective place in UI src/UI/templates/default/Button/button.less
|
||||
|
||||
Do NOT add any code here.
|
||||
|
||||
@Todo: This code needs to be (re)-moved. Are gradient-button btn-info and btn-link needed anymore?
|
||||
*/
|
||||
|
||||
.gradient-button(@color, @borderColor, @startColor, @endColor, @startPercent, @endPercent, @degradeColor: @startColor) {
|
||||
color: @color;
|
||||
border-color: @borderColor;
|
||||
background-color: @degradeColor;
|
||||
#gradient > .vertical(@startColor, @endColor, @startPercent, @endPercent);
|
||||
.reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners
|
||||
|
||||
&:hover {
|
||||
color: darken(@color, 10%);
|
||||
border-color: darken(@borderColor, 3%);
|
||||
background-color: lighten(@degradeColor, 2%);
|
||||
#gradient > .vertical(lighten(@startColor, 1%), lighten(@endColor, 1%), @startPercent, @endPercent);
|
||||
.reset-filter();
|
||||
.box-shadow(0 0 2px rgba(0, 0, 0, 0.2));
|
||||
}
|
||||
&:active {
|
||||
color: @color;
|
||||
border-color: darken(@borderColor, 1%);
|
||||
background-color: darken(@degradeColor, 1%);
|
||||
#gradient > .vertical(darken(@startColor, 1%), darken(@endColor, 1%), @startPercent, @endPercent);
|
||||
.reset-filter();
|
||||
.box-shadow(inset 0 2px 2px rgba(0, 0, 0, 0.05));
|
||||
}
|
||||
}
|
||||
/*
|
||||
.btn-default, .open > .dropdown-toggle.btn-default {
|
||||
.gradient-button(@btn-default-color, @btn-default-border, @btn-default-bg, darken(@btn-default-bg, 5%), 0%, 100%);
|
||||
}
|
||||
*/
|
||||
|
||||
//overwrite buttons styles + add new one
|
||||
//@color @background @border
|
||||
.btn-info {
|
||||
.button-variant(@link-color; white; lighten(@link-color, 35%));
|
||||
}
|
||||
.btn-link {
|
||||
color: @link-color;
|
||||
border: 0 none;
|
||||
background-color: transparent;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
color: @link-hover-color;
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
/* old stuff */
|
||||
|
||||
input.ilSubmitInactive, input.ilSubmitInactive:hover, input.ilSubmitInactive:active,
|
||||
a.ilSubmitInactive, a.ilSubmitInactive:hover , a.ilSubmitInactive:active {
|
||||
background-color: @il-disabled-btn-bg;
|
||||
border-color: @il-disabled-btn-border;
|
||||
color: @il-disabled-btn-color;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.split-btn ul {
|
||||
min-width: 180px
|
||||
}
|
||||
|
||||
.split-btn-default {
|
||||
float: left
|
||||
}
|
||||
|
||||
.btn-split.dropdown-toggle {
|
||||
border-left: 1px solid white;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
border-left: 1px solid white;
|
||||
}
|
||||
}
|
||||
|
||||
button.btn:not(.btn-link) > span:first-child:not(:empty) {
|
||||
display: inline-block;
|
||||
min-width: @il-button-min-width;
|
||||
vertical-align: top;
|
||||
|
||||
@media (max-width: @grid-float-breakpoint-max) {
|
||||
min-width: 0;
|
||||
}
|
||||
}
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
/* Services/UIComponent/Checklist */
|
||||
|
||||
div.ilChecklist ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.ilChecklist ul li {
|
||||
padding: 0;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
div.ilChecklist ul li a, div.ilChecklist ul li span {
|
||||
padding: 5px 5px;
|
||||
margin: 0 -5px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.ilChecklist ul a:hover {
|
||||
text-decoration: none;
|
||||
color: @link-color;
|
||||
}
|
||||
|
||||
div.ilChecklist ul li a:hover {
|
||||
background-color: @il-highlight-bg;
|
||||
}
|
||||
|
||||
div.ilChecklist ul li p, div.ilChecklist ul li p:hover {
|
||||
color: @il-text-light-color;
|
||||
font-size: 85%;
|
||||
text-decoration: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
div.ilChecklist ul li img {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ilSetupContent div.ilChecklist {
|
||||
min-width: 200px;
|
||||
}
|
||||
+238
@@ -0,0 +1,238 @@
|
||||
/* Services/UI/Explorer2 */
|
||||
|
||||
table.ilExplorer {
|
||||
width: 100%;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
div.ilExplorerFrame {
|
||||
}
|
||||
|
||||
td.ilExpH {
|
||||
}
|
||||
|
||||
body.il_Explorer {
|
||||
background: none @il-main-dark-bg;
|
||||
}
|
||||
|
||||
div.il_Explorer {
|
||||
margin: 0;
|
||||
min-height: 468px;
|
||||
padding: 10px 5px 15px;
|
||||
}
|
||||
|
||||
div.ilExpH {
|
||||
padding-top: 48px;
|
||||
min-height: 35px;
|
||||
}
|
||||
|
||||
td.ilExpBody {
|
||||
border-top: 1px solid @il-main-border-color;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
|
||||
h1.ilExplorerHead {
|
||||
color: @il-text-color;
|
||||
margin: 0;
|
||||
padding: 10px 5px 10px 28px;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
div.il_ExplorerTree {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
ul.il_Explorer {
|
||||
margin: 0 0 0 10px;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul.il_ExplorerNoIndent {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
li.il_Explorer {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
a.il_HighlightedNode, .ilHighlighted {
|
||||
background-color: @il-highlight-bg;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
li.ilExplSecHighlight {
|
||||
background-color: @il-main-dark-bg !important;
|
||||
border-top: solid 2px darken(@il-highlight-bg, 45%);
|
||||
border-bottom: solid 2px darken(@il-highlight-bg, 45%);
|
||||
}
|
||||
|
||||
|
||||
div.il_ExplorerItemDescription {
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
a.ilTreeView {
|
||||
position: fixed;
|
||||
top: @il-header-height;
|
||||
//@media only screen and (max-width: 768px) {top: 140px;}
|
||||
z-index: 1020;
|
||||
bottom: 160px;
|
||||
background-color: @il-main-bg;
|
||||
border: 1px solid @il-main-border-color;
|
||||
border-left: none;
|
||||
.box-shadow(1px 1px 2px #b9b9b9);
|
||||
width: 6px;
|
||||
@media only screen and (max-width: @screen-lg-min) {
|
||||
/* at last temporary, since it overlaps content */
|
||||
display: none;
|
||||
}
|
||||
> img {
|
||||
display: inline-block;
|
||||
margin-left: -2px;
|
||||
max-width: inherit;
|
||||
background-color: white;
|
||||
border-right: 2px solid @il-main-border-color;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
&:hover > img,
|
||||
&:active > img,
|
||||
&:focus > img {
|
||||
margin-left: 0;
|
||||
}
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
outline: 0;
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] a.ilTreeView {
|
||||
border: 1px solid @il-main-border-color;
|
||||
border-right: none;
|
||||
> img {
|
||||
margin-left: 0;
|
||||
margin-right: -5px;
|
||||
}
|
||||
&:hover > img,
|
||||
&:active > img,
|
||||
&:focus > img {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
a.ilTreeView:hover img {
|
||||
}
|
||||
|
||||
a.ilTreeViewRight:hover {
|
||||
}
|
||||
|
||||
/* Explorer2, jsTree */
|
||||
.jstree.jstree-default a {
|
||||
color: @link-color !important;
|
||||
}
|
||||
|
||||
.jstree.jstree-default a.disabled {
|
||||
color: @il-text-color !important;
|
||||
cursor: default !important;
|
||||
}
|
||||
|
||||
.jstree.jstree-default a {
|
||||
font-size: 100%;
|
||||
min-height: 22px;
|
||||
}
|
||||
|
||||
.jstree li, .jstree.jstree-default li i {
|
||||
background: url("@{il-background-images-path}jstree.svg") no-repeat;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.jstree.jstree-default .jstree-open > i {
|
||||
background-position: -15px 0 !important;
|
||||
}
|
||||
|
||||
.jstree.jstree-default .jstree-closed > i {
|
||||
background-position: 3px 0 !important;
|
||||
}
|
||||
|
||||
#vakata-contextmenu.jstree-context,
|
||||
#vakata-contextmenu.jstree-context li ul {
|
||||
background: none #f0f0f0;
|
||||
border: 1px solid #979797;
|
||||
.box-shadow(1px 1px 2px #999);
|
||||
}
|
||||
|
||||
#vakata-contextmenu.jstree-context li {}
|
||||
|
||||
#vakata-contextmenu.jstree-context a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
#vakata-contextmenu.jstree-context a:hover,
|
||||
#vakata-contextmenu.jstree-context .vakata-hover > a {
|
||||
padding: 0 5px;
|
||||
background: #e8eff7;
|
||||
border: 1px solid #aecff7;
|
||||
color: @il-text-hover-color;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
#vakata-contextmenu.jstree-context li.jstree-contextmenu-disabled a,
|
||||
#vakata-contextmenu.jstree-context li.jstree-contextmenu-disabled a:hover {
|
||||
color: silver;
|
||||
background: none;
|
||||
border: 0;
|
||||
padding: 1px 4px;
|
||||
}
|
||||
|
||||
#vakata-contextmenu.jstree-context li.vakata-separator {
|
||||
background: white;
|
||||
border-top: 1px solid @il-main-border-color;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#vakata-contextmenu.jstree-context li ul {
|
||||
margin-left: -4px;
|
||||
}
|
||||
|
||||
.jstree img {
|
||||
border: 0;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
img.il_ExplorerIcon {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ilExplorerContainer {
|
||||
padding: 2px 0 6px 0;
|
||||
}
|
||||
|
||||
.ilExplorerContainer .jstree-default .jstree-anchor {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.jstree-default .jstree-node, .jstree-default .jstree-anchor {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.il-maincontrols-slate-content .jstree-default{
|
||||
>ul>li.jstree-node{
|
||||
margin-left: 0;
|
||||
}
|
||||
li.jstree-node{
|
||||
margin-left: @il-tree-node-indentation;
|
||||
padding: 0 @il-tree-node-vertical-spacing;
|
||||
}
|
||||
}
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
/* Services/UIComponent/GroupedLists */
|
||||
|
||||
div.ilGroupedListH {
|
||||
padding: @padding-large-vertical 0 @padding-small-vertical 0;
|
||||
color: @panel-heading-color;
|
||||
}
|
||||
|
||||
div.ilGroupedListSep {
|
||||
padding-bottom: 3px;
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
margin: 0 10px 3px;
|
||||
}
|
||||
|
||||
a.ilGroupedListLE {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
a.ilGroupedListLE:hover {
|
||||
background-color: #ffffd9;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
td.ilGroupedListNewCol {
|
||||
border-left: 1px solid @il-main-border-color;
|
||||
}
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/* Services/UIComponent/Lightbox */
|
||||
|
||||
.ilLightbox {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
background-color: #303030;
|
||||
overflow: auto;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
a.ilMediaLightboxClose {
|
||||
display: block;
|
||||
float: right;
|
||||
margin: 5px 0 10px 10px;
|
||||
cursor: pointer;
|
||||
color: @il-text-color;
|
||||
font-size: 140%;
|
||||
}
|
||||
|
||||
a.ilMediaLightboxClose:hover {
|
||||
color: @il-text-hover-color;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ilLightboxContent {
|
||||
margin: 50px auto 0;
|
||||
width: 640px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.ilLightboxContent {
|
||||
iframe {
|
||||
width: 100%;
|
||||
min-height: 400px;
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
/* Services/UIComponent/Modal */
|
||||
.modal-body .jstree li {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.modal-body .jstree a {
|
||||
display: inline;
|
||||
}
|
||||
.modal-content{
|
||||
color: @il-text-color;
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
@progress-bar-info-bg: darken(@il-main-color, 5%);
|
||||
@progress-bg: #bbb;
|
||||
|
||||
.progress {
|
||||
height: 15px;
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
font-size: 11px;
|
||||
line-height: 15px;
|
||||
min-width: 30px;
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
/* Services/UIComponent/Tabs */
|
||||
|
||||
.nav-tabs {
|
||||
> li {
|
||||
margin: 0 4px 0 0;
|
||||
//border-top: 4px solid transparent;
|
||||
> a {
|
||||
border-radius: 0;
|
||||
border: 0 none;
|
||||
padding: 6px 12px 3px;
|
||||
font-size: ceil((@font-size-base * 0.9));
|
||||
margin: 0;
|
||||
&:hover {
|
||||
//background-color: transparent;
|
||||
//border-color: transparent;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
//border-top: 4px solid lighten(@brand-primary, 25%);
|
||||
}
|
||||
// Active state, and its :hover to override normal :hover
|
||||
&.active > a {
|
||||
&,
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: @il-neutral-color;
|
||||
color: white;
|
||||
border: 0 none;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] .nav-tabs {
|
||||
> li {
|
||||
margin: 0 0 0 4px;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
||||
#ilTab {
|
||||
padding: 0;
|
||||
margin: 7px 15px 23px;
|
||||
border: 0 none;
|
||||
border-bottom: 2px solid @il-neutral-color;
|
||||
}
|
||||
|
||||
#ilTab a:focus-visible {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.ilSetupContent #ilTab {
|
||||
margin: 7px 0 23px;
|
||||
}
|
||||
|
||||
.ilTabsContentOuter {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Sub Tabs */
|
||||
#ilSubTab {
|
||||
padding: 5px 20px;
|
||||
margin: -23px 0 10px;
|
||||
> li {
|
||||
> a {
|
||||
border-radius: 0;
|
||||
padding: 3px 7px;
|
||||
font-size: (@font-size-small * 0.97);
|
||||
/* font-weight: 600; */
|
||||
&:hover {
|
||||
color: @il-link-hover-color;
|
||||
}
|
||||
}
|
||||
&.active > a {
|
||||
&,
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: @il-link-color;
|
||||
background-color: transparent;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+117
@@ -0,0 +1,117 @@
|
||||
/* Services/UIComponent/Toolbar */
|
||||
|
||||
.ilToolbar {
|
||||
.container-fluid {
|
||||
padding-left: 0;
|
||||
}
|
||||
&.navbar {
|
||||
border: 0 none;
|
||||
background-color: @il-toolbar-bg;
|
||||
}
|
||||
.navbar-toggle {
|
||||
.il-focus();
|
||||
}
|
||||
.ilToolbarItems {
|
||||
padding: 0;
|
||||
}
|
||||
.form-control{
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
.input-group {
|
||||
vertical-align: top;
|
||||
}
|
||||
input[type="file"] {
|
||||
display: inline-block;
|
||||
}
|
||||
li {
|
||||
border: 0 none;
|
||||
margin-right: @il-toolbar-margin;
|
||||
.dropdown-header{
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
}
|
||||
.navbar-form, .navbar-text {
|
||||
padding: 0;
|
||||
border: 0 none;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
display: inline-block;
|
||||
color: @il-text-color;
|
||||
}
|
||||
&.navbar-text {
|
||||
margin-left: 0;
|
||||
}
|
||||
&.ilToolbarSeparator {
|
||||
border-left: @il-toolbar-border;
|
||||
height: @il-toolbar-height;
|
||||
}
|
||||
&.ilToolbarGroup {
|
||||
.navbar-form, .navbar-text {
|
||||
margin-left: (@il-toolbar-margin / 2);
|
||||
&:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
.navbar-text {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn[disabled]{
|
||||
padding: @padding-small-vertical @padding-small-horizontal;
|
||||
}
|
||||
|
||||
.ilToolbarStickyItems {
|
||||
float: left;
|
||||
margin-left: @il-toolbar-margin;
|
||||
&.navbar-nav {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
.open .dropdown-menu > li > a {
|
||||
padding-left: 10px;
|
||||
}
|
||||
}
|
||||
> li {
|
||||
float: left;
|
||||
margin-right: @il-toolbar-margin;
|
||||
.navbar-form {
|
||||
border: 0 none;
|
||||
}
|
||||
&.ilToolbarStickyItem {
|
||||
border: 0 none;
|
||||
}
|
||||
}
|
||||
}
|
||||
ul {
|
||||
&.dropdown-menu {
|
||||
> li {
|
||||
border: 0 none;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//See #https://mantis.ilias.de/view.php?id=30615
|
||||
.ilToolbarContainer + .ilFilterContainer{
|
||||
margin-top: -20px;
|
||||
}
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
.ilToolbar {
|
||||
.container-fluid {
|
||||
padding-left: 15px;
|
||||
}
|
||||
li {
|
||||
border-bottom: @il-toolbar-border;
|
||||
margin-right: 0;
|
||||
}
|
||||
.ilToolbarStickyItems {
|
||||
&.navbar-nav {
|
||||
.open .dropdown-menu > li > a {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
/* Services/UIComponent/Tooltip */
|
||||
.qtip-default {
|
||||
font-size: @font-size-small;
|
||||
line-height: @line-height-small;
|
||||
|
||||
background-color: @il-tooltip-bg-color;
|
||||
border-color: @il-tooltip-border-color;
|
||||
color: @il-tooltip-color;
|
||||
|
||||
.box-shadow(@il-tooltip-shadow);
|
||||
|
||||
-webkit-border-radius: @il-tooltip-border-radius;
|
||||
-moz-border-radius: @il-tooltip-border-radius;
|
||||
border-radius: @il-tooltip-border-radius;
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
/* Services/User */
|
||||
|
||||
div.ilProfile {
|
||||
max-width: 450px;
|
||||
margin: 0 auto;
|
||||
background-color: @il-main-dark-bg;
|
||||
padding: 15px;
|
||||
+ div.ilPermalinkContainer {
|
||||
margin-top: 20px;
|
||||
.input-group-btn {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
img.ilProfileImage {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
h3.ilProfileName {
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
font-weight: normal;
|
||||
font-size: 130%
|
||||
}
|
||||
|
||||
div.ilProfileSection {
|
||||
margin-top: 20px;
|
||||
font-size: 90%;
|
||||
color: #606060;
|
||||
}
|
||||
|
||||
h3.ilProfileSectionHead {
|
||||
margin: 0 0 3px;
|
||||
padding: 0;
|
||||
font-weight: normal;
|
||||
font-size: 110%;
|
||||
color: #202020;
|
||||
}
|
||||
|
||||
table.il_user_quota_disk_usage_overview {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
img.ilUserXXSmall {
|
||||
max-width: 30px;
|
||||
}
|
||||
|
||||
/* -- User Gallery Styles -- */
|
||||
.ilUsersGalleryContainer {
|
||||
div.ilUser {
|
||||
margin: 0 0 20px;
|
||||
background-color: white;
|
||||
padding: 20px 0;
|
||||
font-size: 100%;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
text-align: center;
|
||||
img {
|
||||
min-height: 80px;
|
||||
max-height: 80px;
|
||||
}
|
||||
h3 {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
padding: 5px;
|
||||
margin: 20px 0;
|
||||
font-size: 1.6rem !important;
|
||||
}
|
||||
.action {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
div {
|
||||
display: inline-block;
|
||||
}
|
||||
.btn {
|
||||
float: left;
|
||||
}
|
||||
.btn-default:hover {
|
||||
color: white !important;
|
||||
}
|
||||
.mailBtn {
|
||||
height: 37px;
|
||||
font-size: 16px;
|
||||
padding: 0 15px;
|
||||
line-height: 30px;
|
||||
margin: 2px 0 0 0;
|
||||
}
|
||||
.open {
|
||||
.btn {
|
||||
.box-shadow(0 0 0 0 3px 5px rgba(0, 0, 0, 0.5));
|
||||
}
|
||||
.btn-success:hover,
|
||||
.btn-success:focus,
|
||||
.btn-success:active {
|
||||
color: white;
|
||||
background: #626f78;
|
||||
.box-shadow(0 0 0 0 3px 5px rgba(0, 0, 0, 0.5));
|
||||
border: 1px solid #5b6770;
|
||||
}
|
||||
}
|
||||
ul.dropdown-menu {
|
||||
min-width: 170px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
.box-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
|
||||
li > a {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
.webdav-view-control {
|
||||
text-align: center;
|
||||
padding: @il-focus-outline-inner-width + @il-focus-outline-outer-width;
|
||||
}
|
||||
+172
@@ -0,0 +1,172 @@
|
||||
/**
|
||||
Some bootstrap variables are not left by the default of bootstrap, but are overwritten by ILIAS less variales.
|
||||
Those are set here. If you need to overwrite a less variable of bootstrap, set a variable in the the variables.less
|
||||
file of ILIAS with the il- prefix and use this variable to overwrite the boostrap variable here. If possible, do use
|
||||
the il- variable in your less code and not the boostrap variable in your less code.
|
||||
*/
|
||||
|
||||
//== Colors
|
||||
//
|
||||
//## Gray and brand colors for use across Bootstrap.
|
||||
@brand-primary: @il-main-color;
|
||||
@brand-success: @il-success-color;
|
||||
@brand-info: @il-info-color;
|
||||
@brand-warning: @il-warning-color;
|
||||
@brand-danger: @il-danger-color;
|
||||
|
||||
//== Scaffolding
|
||||
//
|
||||
//## Settings for some of the most global styles.
|
||||
|
||||
//** Background color for `<body>`.
|
||||
@body-bg: @il-content-bg;
|
||||
//** Global text color on `<body>`.
|
||||
@text-color: @il-text-color;
|
||||
|
||||
//** Global textual link color.
|
||||
@link-color: @il-link-color;
|
||||
//** Link hover color set via `darken()` function.
|
||||
@link-hover-color: @il-link-hover-color;
|
||||
|
||||
//** if left unchanged, you have to copy delos fonts folder to your skin folder. To use the delos fonts in your skin, please change this value (in custom less data or variables.less of your custom skin) to "../../../../templates/default/fonts/"
|
||||
@il-web-font-path: "fonts/";
|
||||
@font-family-sans-serif: @il-font-family-sans-serif;
|
||||
|
||||
@font-size-base: @il-font-size-base;
|
||||
@font-size-large: @il-font-size-large;
|
||||
@font-size-small: @il-font-size-small;
|
||||
@font-size-xs: ceil((@il-font-size-base * 0.75));
|
||||
|
||||
@font-size-h1: floor((@font-size-base * 1.6));
|
||||
@font-size-h2: floor((@font-size-base * 1.4));
|
||||
@font-size-h3: ceil((@font-size-base * 1.3));
|
||||
@font-size-h4: ceil((@font-size-base * 1.2));
|
||||
@font-size-h5: ceil((@font-size-base * 1.1));
|
||||
@font-size-h6: @il-font-size-base;
|
||||
|
||||
//** Unit-less `line-height` for use in components like buttons.
|
||||
@line-height-base: @il-line-height-base;
|
||||
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
||||
@line-height-computed: floor((@il-font-size-base * @il-line-height-base)); // ~20px
|
||||
//** For larger font sizes, such as titles in panels.
|
||||
@line-height-large: 1.33;
|
||||
//** For smaller font sizes
|
||||
@line-height-small: 1.5;
|
||||
|
||||
//== Base Padding and Border
|
||||
//
|
||||
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
||||
@padding-base-vertical: @il-padding-base-vertical;
|
||||
@padding-base-horizontal: @il-padding-base-horizontal;
|
||||
|
||||
@padding-large-vertical: @il-padding-large-vertical;
|
||||
@padding-large-horizontal: @il-padding-large-horizontal;
|
||||
|
||||
@padding-small-vertical: @il-padding-small-vertical;
|
||||
@padding-small-horizontal: @il-padding-small-horizontal;
|
||||
|
||||
@padding-xs-vertical: @il-padding-xs-vertical;
|
||||
@padding-xs-horizontal: @il-padding-xs-horizontal;
|
||||
|
||||
@border-radius-base: @il-border-radius-base;
|
||||
@border-radius-large: @il-border-radius-large;
|
||||
@border-radius-small: @il-border-radius-small;
|
||||
|
||||
@grid-float-breakpoint-max: @il-grid-float-breakpoint-max;
|
||||
|
||||
//== Icons
|
||||
//
|
||||
//## Icons are used to represent (and quickly identify) objects.
|
||||
|
||||
@icon-font-path: @il-icon-font-path;
|
||||
|
||||
//== Navs
|
||||
//
|
||||
//##
|
||||
@nav-link-padding: 5px 10px;
|
||||
@nav-tabs-border-color: @il-main-border-color;
|
||||
/* @nav-tabs-link-hover-border-color: @brand-primary; */
|
||||
@nav-tabs-active-link-hover-border-color: @il-main-border-color;
|
||||
|
||||
@btn-default-color: @il-link-color;
|
||||
@btn-default-border: #d0d0d0;
|
||||
@btn-default-bg: #fefefe;
|
||||
|
||||
//== Badges
|
||||
//
|
||||
//##
|
||||
@badge-bg: @il-warning-color;
|
||||
@badge-active-bg: @il-warning-color;
|
||||
|
||||
//== Input Fields
|
||||
//
|
||||
//## Variables used to style the ILIAS input fields (e.g. Text Inputs etc.)
|
||||
@input-border-radius: 0;
|
||||
@input-border-focus: lighten(@il-main-color, 20%);
|
||||
@input-height-base: (floor((@il-standard-form-font-size * @line-height-base)) + (@padding-base-vertical * 2) + 2);
|
||||
@input-color-placeholder: @il-text-light-color;
|
||||
|
||||
//== Tables
|
||||
//
|
||||
//## Customizes the `.table` component with basic values, each used across all table variations.
|
||||
|
||||
//** Background color used for `.table-striped`.
|
||||
@table-bg-accent: white;
|
||||
|
||||
//== bootstrap date time picker (/Services/Calendar/)
|
||||
//
|
||||
//##
|
||||
@bs-datetimepicker-timepicker-font-size: 1.2em;
|
||||
@bs-datetimepicker-active-bg: @il-btn-primary-bg;
|
||||
@bs-datetimepicker-active-color: @il-btn-primary-color;
|
||||
@bs-datetimepicker-border-radius: @il-border-radius-base;
|
||||
@bs-datetimepicker-btn-hover-bg: @il-highlight-bg;
|
||||
@bs-datetimepicker-disabled-color: @il-neutral-light-color;
|
||||
@bs-datetimepicker-alternate-color: @il-neutral-light-color;
|
||||
@bs-datetimepicker-secondary-border-color: #ccc;
|
||||
@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);
|
||||
@bs-datetimepicker-primary-border-color: white;
|
||||
@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
|
||||
//== Panels
|
||||
//
|
||||
//##
|
||||
|
||||
@panel-bg: @il-main-bg;
|
||||
@panel-body-padding: 15px;
|
||||
@panel-heading-color: @il-text-color;
|
||||
@panel-heading-padding: 1.5*@padding-large-vertical @padding-large-horizontal;
|
||||
@panel-footer-padding: @panel-heading-padding;
|
||||
@panel-border-radius: @border-radius-base;
|
||||
|
||||
//** Border color for elements within panels
|
||||
@panel-inner-border: @il-main-border-color;
|
||||
@panel-footer-bg: @il-main-dark-bg;
|
||||
|
||||
@panel-default-text: @il-text-color;
|
||||
@panel-default-border: none;
|
||||
@panel-default-heading-bg: @il-main-dark-bg;
|
||||
|
||||
@panel-primary-text: @il-text-color;
|
||||
@panel-primary-border: none;
|
||||
@panel-primary-heading-bg: @il-main-dark-bg;
|
||||
|
||||
//== DropDowns
|
||||
//
|
||||
//##
|
||||
@dropdown-bg: @il-main-bg;
|
||||
@dropdown-link-color: @il-text-color;
|
||||
@dropdown-link-hover-color: @il-text-hover-color;
|
||||
@dropdown-link-bg: transparent;
|
||||
@dropdown-link-hover-bg: @il-highlight-bg;
|
||||
@dropdown-header-bg: white;
|
||||
|
||||
|
||||
@navbar-height: @il-toolbar-height;
|
||||
|
||||
//== Type
|
||||
//
|
||||
//##
|
||||
|
||||
//** Text muted color
|
||||
@text-muted: @il-neutral-light-color;
|
||||
@@ -0,0 +1,59 @@
|
||||
// Extended color variants mixin
|
||||
//
|
||||
// Easily pump classes for the various color variants
|
||||
// Example: To render a div with color variant 1 in the light version use:
|
||||
// <div class="extended-color-variant-1 il-extended-color-variant-light">
|
||||
.il-extended-color-variant-mixin(@background-color;){
|
||||
&.il-extended-color-variant-standard{
|
||||
color: darken(@background-color,@il-extended-text-color-factor-standard);
|
||||
background-color: lighten(@background-color,@il-extended-color-factor-standard);
|
||||
}
|
||||
|
||||
&.il-extended-color-variant-light{
|
||||
color: darken(@background-color,@il-extended-text-color-factor-light);
|
||||
background-color: lighten(@background-color,@il-extended-color-factor-light);
|
||||
}
|
||||
&.il-extended-color-variant-lighter{
|
||||
color: darken(@background-color,@il-extended-text-color-factor-lighter);
|
||||
background-color: lighten(@background-color,@il-extended-color-factor-lighter);
|
||||
}
|
||||
&.il-extended-color-variant-dark{
|
||||
color: lighten(@background-color,@il-extended-text-color-factor-dark);
|
||||
background-color: darken(@background-color,@il-extended-color-factor-light);
|
||||
}
|
||||
&.il-extended-color-variant-darker{
|
||||
color: lighten(@background-color,@il-extended-text-color-factor-darker);
|
||||
background-color: darken(@background-color,@il-extended-color-factor-darker);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
//Concrete color variant classes
|
||||
.extended-color-variant-1{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-1);
|
||||
}
|
||||
.extended-color-variant-2{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-2);
|
||||
}
|
||||
.extended-color-variant-3{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-3);
|
||||
}
|
||||
.extended-color-variant-4{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-4);
|
||||
}
|
||||
.extended-color-variant-5{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-5);
|
||||
}
|
||||
.extended-color-variant-6{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-6);
|
||||
}
|
||||
.extended-color-variant-7{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-7);
|
||||
}
|
||||
.extended-color-variant-8{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-8);
|
||||
}
|
||||
.extended-color-variant-9{
|
||||
.il-extended-color-variant-mixin(@il-extended-color-9);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// ATTENTION: import this to your skin if your less-modifications use the names from
|
||||
// before the changes in github.com/ILIAS-eLearning/ILIAS/pull/253 were merged.
|
||||
|
||||
@il-header-height: @il-fixed-menu-height;
|
||||
@il-top-bar-height: @il-fixed-menu-height-bar-only;
|
||||
@@ -0,0 +1,42 @@
|
||||
// In order not to manually overwrite the focus in all places, the following bootstrap focus mixin is overwritten ilias/libs/bower/bower_components/bootstrap/less/mixins/tab-focus.less.
|
||||
|
||||
.tab-focus(){
|
||||
// WebKit-specific. Other browsers will keep their default outline style.
|
||||
// (Initially tried to also force default via `outline: initial`,
|
||||
// but that seems to erroneously remove the outline in Firefox altogether.)
|
||||
outline: none;
|
||||
outline-offset: 0px;
|
||||
&:focus-visible {
|
||||
outline: @il-focus-outline-outer;
|
||||
outline-offset: @il-focus-outline-inner-width + @il-focus-outline-outer-width;
|
||||
|
||||
.il-focus-after();
|
||||
}
|
||||
}
|
||||
|
||||
.il-focus() {
|
||||
&:focus-visible {
|
||||
position: relative;
|
||||
outline: @il-focus-outline-outer;
|
||||
outline-offset: @il-focus-outline-inner-width + @il-focus-outline-outer-width - 1px;
|
||||
|
||||
.il-focus-after();
|
||||
}
|
||||
|
||||
&:active,&.engaged{
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
.il-focus-after() {
|
||||
&::after {
|
||||
content: " ";
|
||||
position: absolute;
|
||||
top: -@il-focus-outline-outer-width;
|
||||
left: -@il-focus-outline-outer-width;
|
||||
right: -@il-focus-outline-outer-width;
|
||||
bottom: -@il-focus-outline-outer-width;
|
||||
border: @il-focus-outline-outer;
|
||||
outline: @il-focus-outline-inner;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-Regular.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-Regular.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-Bold.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-Bold.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-Italic.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-Italic.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-BoldItalic.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-BoldItalic.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-Light.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-Light.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-LightItalic.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-LightItalic.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-Semibold.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-Semibold.woff') format('woff');
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-SemiboldItalic.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-SemiboldItalic.woff') format('woff');
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-ExtraBold.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-ExtraBold.woff') format('woff');
|
||||
font-weight: 800;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('@{il-web-font-path}OpenSansWeb/OpenSans-ExtraBoldItalic.woff2') format('woff2'),
|
||||
url('@{il-web-font-path}OpenSansWeb/OpenSans-ExtraBoldItalic.woff') format('woff');
|
||||
font-weight: 800;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
// currently from https://github.com/MorbZ/OpenSansEmoji
|
||||
// under http://www.apache.org/licenses/LICENSE-2.0
|
||||
@font-face {
|
||||
font-family: 'Open Sans Emoji';
|
||||
src: url('@{il-web-font-path}OpenSansEmoji/OpenSansEmoji.ttf') format('truetype'),
|
||||
url('@{il-web-font-path}OpenSansEmoji/OpenSansEmoji.otf') format('otf');
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'il-icons';
|
||||
src: url('@{il-web-font-path}Iconfont/il-icons.woff') format('woff'),
|
||||
url('@{il-web-font-path}Iconfont/il-icons.ttf') format('truetype');
|
||||
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
These classes are used to limit the number of rows when displaying larger chunks of text.
|
||||
The mixin receives @height-in-rows as an integer. The classes il-multi-line-cap-2,3,5,10
|
||||
can be used to limit the number of rows for text to 2,3,5 or 10 lines in any template,
|
||||
e.g. the Standard Listing Panels limit the property values to 3 lines using il-multi-line-cap-3
|
||||
|
||||
Technical discussion can be found in https://mantis.ilias.de/view.php?id=21583
|
||||
The background/gradient fallback can be removed as soon as all browsers support line-clamp.
|
||||
*/
|
||||
.il-multi-line-cap-mixin(@height-in-rows;){
|
||||
& {
|
||||
position: relative;
|
||||
max-height: @height-in-rows * @line-height-small * 1em;
|
||||
overflow: hidden;
|
||||
line-height: @line-height-small;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
text-align: right;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 30%;
|
||||
height: @line-height-small * 1em;
|
||||
background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 80%);
|
||||
}
|
||||
|
||||
/* edge, chrome, safari go here... */
|
||||
@supports (-webkit-line-clamp: 2) {
|
||||
& {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: @height-in-rows;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
&:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* may come with next firefox 68, https://caniuse.com/#search=clamp */
|
||||
@supports (-moz-line-clamp: 2) {
|
||||
& {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -moz-box;
|
||||
-moz-line-clamp: @height-in-rows;
|
||||
-moz-box-orient: vertical;
|
||||
}
|
||||
|
||||
&:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.il-multi-line-cap-2 {
|
||||
.il-multi-line-cap-mixin(2);
|
||||
}
|
||||
|
||||
.il-multi-line-cap-3 {
|
||||
.il-multi-line-cap-mixin(3);
|
||||
}
|
||||
|
||||
.il-multi-line-cap-5 {
|
||||
.il-multi-line-cap-mixin(5);
|
||||
}
|
||||
|
||||
.il-multi-line-cap-10 {
|
||||
.il-multi-line-cap-mixin(10);
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
/* --------------------------------------------------------------
|
||||
RESET CSS (Eric Meyer's "Reset CSS" 2.0)
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
/*ol, ul {
|
||||
list-style: none;
|
||||
}*/
|
||||
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
// From the Bootstrap 3 sr-only-focusable class
|
||||
// Only display content to screen readers
|
||||
//
|
||||
// See: http://a11yproject.com/posts/how-to-hide-content
|
||||
|
||||
.sr-only() {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
clip: rect(0,0,0,0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
// From the Bootstrap 3 sr-only-focusable class
|
||||
// Use in conjunction with .sr-only to only display content when it's focused.
|
||||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
||||
// Credit: HTML5 Boilerplate
|
||||
|
||||
.sr-only-focusable() {
|
||||
&:active,
|
||||
&:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,853 @@
|
||||
/**
|
||||
This file contains all less Variables set by ILIAS. Please do not overwrite bootstrap standard variables here.
|
||||
Set an ILIAS variable here with an il- prefix and overwrite the bootstrap variable in the bootstrap variables file
|
||||
with the il- variable set here.
|
||||
*/
|
||||
|
||||
|
||||
//== Main Colors
|
||||
//
|
||||
//## The Main Colors used in ILIAS along with their semantics
|
||||
//** For Standard Buttons, Main color used in various places, used to be @brand-primary
|
||||
@il-main-color: #4c6586;
|
||||
//** For Primary Buttons, used to point to interactions with a special importance, used to be @brand-secondary
|
||||
@il-secondary-color: #6ea03c;
|
||||
//** Used to indicate some success, used to be @brand-success
|
||||
@il-success-color: #6ea03c;
|
||||
//** Used to indicate some success, used to be @brand-info
|
||||
@il-info-color: #dcb496;
|
||||
//** Used to indicate some warning or to draw special focus to some element, used to be @brand-warning
|
||||
@il-warning-color: #B54F00;
|
||||
//** Used to indicate some warning or to draw special focus to some element, used to be @brand-danger
|
||||
@il-danger-color: #d00;
|
||||
|
||||
//** Neutral Color for various Backgrounds, used to be @gray-dark and @il-neutral-color
|
||||
@il-neutral-color: #2c2c2c;
|
||||
//** Light version of the @il-neutral-color, used to be @gray-light
|
||||
@il-neutral-light-color: #737373;
|
||||
|
||||
//** Base Border Color, e.g. applied to Meta Bar and Breadcrumbs in Default.
|
||||
@il-main-border-color: #dddddd;
|
||||
//** Darker version of Base Border Color. Used as e.g. Text Inputs.
|
||||
@il-main-border-dark-color: #757575;
|
||||
|
||||
//** Base Background Color, e.g. applied to Meta Bar and Breadcrumbs in Default, but also to panels in main content area.
|
||||
@il-main-bg: white;
|
||||
//** Title area of various components such as Panels. Used as e.g. in containers as bg. Used to be @il-secondary-bg
|
||||
@il-main-dark-bg: #f9f9f9;
|
||||
//** Background of everything in the Content Area, which is the area bellow the Meta Bar and Breadcrumbs next to the Main Bar. Used to be @body-bg
|
||||
@il-content-bg: #f0f0f0;
|
||||
|
||||
//** Currently used for several highlighting effects, such as hovering
|
||||
@il-highlight-bg: lighten(@il-main-color, 50%);
|
||||
|
||||
//** Used to be @text-color. Can be used on all background colors.
|
||||
@il-text-color: #161616;
|
||||
//** Used if text is hovered in components such a Dropdowns
|
||||
@il-text-hover-color: darken(@il-text-color, 10%);
|
||||
//** Used e.g. for Bylines in Forms. Used to be @il-light-text-color. For accessibility reasons, the @il-text-color should only be used on the @il-main-bg.
|
||||
@il-text-light-color: lighten(@il-text-color, 35%);
|
||||
|
||||
//** Used to be @link-color
|
||||
@il-link-color: @il-main-color;
|
||||
//** Used to be @link-hover-color
|
||||
@il-link-hover-color: darken(@il-link-color, 10%);
|
||||
|
||||
//** Used to set focus on interactive elements for keyboard navigation.
|
||||
@il-focus-color: #0078D7;
|
||||
@il-focus-protection-color: #FFFFFF;
|
||||
|
||||
//== Extended Colors
|
||||
//
|
||||
//## Extended Colors of ILIAS to be used to generate coloring for components like charts.
|
||||
|
||||
//** Variant 1 of the extended color set in ILIAS
|
||||
@il-extended-color-1: #f3de2c;
|
||||
//** Variant 2 of the extended color set in ILIAS
|
||||
@il-extended-color-2: #d38000;
|
||||
//** Variant 3 of the extended color set in ILIAS
|
||||
@il-extended-color-3: #307C88;
|
||||
//** Variant 4 of the extended color set in ILIAS
|
||||
@il-extended-color-4: #86cb92;
|
||||
//** Variant 5 of the extended color set in ILIAS
|
||||
@il-extended-color-5: #ce73a8;
|
||||
//** Variant 6 of the extended color set in ILIAS
|
||||
@il-extended-color-6: #82639e;
|
||||
//** Variant 7 of the extended color set in ILIAS
|
||||
@il-extended-color-7: #9e7c7d;
|
||||
//** Variant 8 of the extended color set in ILIAS
|
||||
@il-extended-color-8: #f75e82;
|
||||
//** Variant 9 of the extended color set in ILIAS
|
||||
@il-extended-color-9: #ea4d54;
|
||||
|
||||
//** Factor by witch a specific color variant is darkened in the standard coloring
|
||||
@il-extended-color-factor-standard: 0%;
|
||||
//** Factor by witch a specific color variant is lightened in the light coloring
|
||||
@il-extended-color-factor-light: 14%;
|
||||
//** Factor by witch a specific variant is lightened in the lighter coloring
|
||||
@il-extended-color-factor-lighter: 24%;
|
||||
//** Factor by witch a specific variant is darkened in the dark coloring
|
||||
@il-extended-color-factor-dark: 14%;
|
||||
//** Factor by witch a specific variant is darkened in the darker coloring
|
||||
@il-extended-color-factor-darker: 22%;
|
||||
|
||||
//** Factor by witch text colored by a specific color variant in the standard coloring shown inside a background of this exact variant is lightened
|
||||
@il-extended-text-color-factor-standard: 30%;
|
||||
//** Factor by witch text colored by a specific color variant in the light coloring shown inside a background of this exact variant is darkened
|
||||
@il-extended-text-color-factor-light: 17%;
|
||||
//** Factor by witch text colored by a specific color variant in the lighter coloring shown inside a background of this exact variant is darkened
|
||||
@il-extended-text-color-factor-lighter: 15%;
|
||||
//** Factor by witch text colored by a specific color variant in the dark coloring shown inside a background of this exact variant is lightened
|
||||
@il-extended-text-color-factor-dark: 40%;
|
||||
//** Factor by witch text colored by a specific color variant in the darker coloring shown inside a background of this exact variant is lightened
|
||||
@il-extended-text-color-factor-darker: 60%;
|
||||
|
||||
//== Typography
|
||||
//
|
||||
//##
|
||||
|
||||
//** if left unchanged, you have to copy delos fonts folder to your skin folder. To use the delos fonts in your skin, please change this value (in custom less data or variables.less of your custom skin) to "../../../../templates/default/fonts/"
|
||||
@il-web-font-path: "fonts/";
|
||||
@il-font-family-sans-serif: 'Open Sans', Verdana, Arial, Helvetica, sans-serif;
|
||||
|
||||
//** Base font size used to calculate others
|
||||
@il-font-size-base: 14px;
|
||||
@il-font-size-large: ceil((@il-font-size-base * 1.25));
|
||||
@il-font-size-small: ceil((@il-font-size-base * 0.85));
|
||||
//** Unit-less `line-height` for use in components like buttons.
|
||||
@il-line-height-base: 1.428571429; // 20/14
|
||||
|
||||
|
||||
//== Base Padding and Border
|
||||
//
|
||||
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
||||
@il-padding-base-vertical: 3px;
|
||||
@il-padding-base-horizontal: 8px;
|
||||
|
||||
@il-padding-xlarge-vertical: 9px;
|
||||
@il-padding-xlarge-horizontal: 15px;
|
||||
|
||||
@il-padding-large-vertical: 6px;
|
||||
@il-padding-large-horizontal: 12px;
|
||||
|
||||
@il-padding-small-vertical: 4px;
|
||||
@il-padding-small-horizontal: 6px;
|
||||
|
||||
@il-padding-xs-vertical: 1px;
|
||||
@il-padding-xs-horizontal: 5px;
|
||||
|
||||
@il-border-radius-base: 0px;
|
||||
@il-border-radius-large: 0px;
|
||||
@il-border-radius-small: 0px;
|
||||
|
||||
@il-focus-outline-inner: @il-focus-outline-inner-width solid @il-focus-color;
|
||||
@il-focus-outline-outer: @il-focus-outline-outer-width solid @il-focus-protection-color;
|
||||
// The offset should only be used if the contrast between the focus outline and the component is insufficient.
|
||||
@il-focus-outline-inner-width: 3px;
|
||||
@il-focus-outline-outer-width: 2px;
|
||||
|
||||
//== Layout (UI Layout Page)
|
||||
//
|
||||
//## Variables to modify the appearance of the page generated by the UI Framework.
|
||||
//** header, footer and logo
|
||||
@il-grid-float-breakpoint-max: 768px;
|
||||
|
||||
@il-standard-page-logo-height: 45px;
|
||||
@il-standard-page-logo-width: 45px;
|
||||
@il-standard-page-header-height: 60px;
|
||||
@il-standard-page-header-bg-color: @il-main-bg;
|
||||
@il-standard-page-header-page-title-color: @il-text-color;
|
||||
@il-standard-page-border-light-color: @il-main-border-color;
|
||||
@il-standard-page-content-padding: 20px;
|
||||
|
||||
//** metabar
|
||||
@il-metabar-entry-height: 60px;
|
||||
@il-metabar-entry-width: 60px;
|
||||
@il-metabar-glyph-size: 2.3rem;
|
||||
@il-metabar-glyph-color: @il-neutral-light-color;
|
||||
@il-metabar-slates-width: 500px;
|
||||
|
||||
//** breadcrumbs
|
||||
@il-standard-page-breadcrumbs-height: 33px;
|
||||
@il-standard-page-breadcrumbs-bg-color: @il-main-bg;
|
||||
@il-standard-page-breadcrumbs-color: @il-link-color;
|
||||
@il-standard-page-breadcrumbs-active-color: @il-link-hover-color;
|
||||
@il-standard-page-breadcrumbs-divider-color: @il-neutral-light-color;
|
||||
@il-standard-page-breadcrumbs-font-weight: 600;
|
||||
@il-standard-page-breadcrumbs-seperator: " \e606";
|
||||
|
||||
//** mainbar
|
||||
@il-maincontrols-mainbar-bg-color: @il-main-bg;
|
||||
@il-mainbar-btn-height: 80px;
|
||||
@il-mainbar-btn-width: 80px;
|
||||
@il-mainbar-btn-color: white;
|
||||
@il-mainbar-btn-bg-color: @il-neutral-color;
|
||||
@il-mainbar-btn-color-engaged: @il-neutral-color;
|
||||
@il-mainbar-btn-bg-color-engaged: @il-main-bg;
|
||||
@il-mainbar-btn-border: 1px solid @il-standard-page-border-light-color;
|
||||
@il-mainbar-btn-label-size: .9rem;
|
||||
@il-mainbar-bulky-label-margin-top: 5px;
|
||||
@il-mainbar-tools-btn-bg: @il-warning-color;
|
||||
@il-mainbar-tools-bg: @il-content-bg;
|
||||
@il-mainbar-tools-item-gap: 3px;
|
||||
|
||||
//** tools
|
||||
@il-mainbar-remove-tools-btn-height: 45px;
|
||||
|
||||
//** modeinfo
|
||||
@il-mode-info-color: @il-warning-color;
|
||||
@il-mode-info-border: 3px solid @il-mode-info-color;
|
||||
@il-mode-info-height: 30px;
|
||||
@il-mode-info-shadow: 0px 2px 2px 0px rgba(128, 128, 128, 1);
|
||||
@il-mode-info-text-color: white;
|
||||
@il-mode-info-zindex: 1010;
|
||||
|
||||
|
||||
//** slates
|
||||
@il-slate-bulky-bg-color: #f2f2f2;
|
||||
@il-slate-bulky-level2-bg-color: #f9f9f9;
|
||||
@il-slate-bulky-bg-color-engaged: fade(@il-main-color, 30%);
|
||||
@il-slate-content-padding: 10px;
|
||||
@il-slate-tree-padding: 4px 0;
|
||||
@il-slate-bulky-padding: 10px 40px 15px 10px;
|
||||
@il-slate-bulky-link-padding: 10px 10px 15px 10px;
|
||||
@il-slate-bulky-glyph-size: 2rem;
|
||||
@il-slate-bulky-glyph-margin-right: 5px;
|
||||
@il-slate-bulky-label-size: 1.5rem;
|
||||
@il-slate-content-spacing: 2px;
|
||||
@il-standard-page-slate-width: 329px;
|
||||
@il-mainbar-slates-bg-color: @il-main-bg;
|
||||
@il-metabar-slates-bg-color: #fafafa;
|
||||
@il-mainbar-close-slate-btn-height: 45px;
|
||||
@il-metabar-close-slate-btn-height: 30px;
|
||||
|
||||
//** shadows
|
||||
@il-standard-page-shadow-color: rgba(0, 0, 0, .1);
|
||||
@il-mainbar-shadow-right: 1px 3px 4px @il-standard-page-shadow-color;
|
||||
@il-mainbar-shadow-top: 0 0 4px @il-standard-page-shadow-color;
|
||||
@il-standard-page-header-shadow-bottom: 0 1px 2px @il-standard-page-shadow-color;
|
||||
|
||||
//** for mobile (small devices)
|
||||
@il-standard-page-small-header-height: 45px;
|
||||
@il-standard-page-small-mainbar-height: 50px;
|
||||
@il-standard-page-small-mainbar-height-w-bottom-safe-area: calc(@il-standard-page-small-mainbar-height + 1.2 * env(safe-area-inset-bottom));
|
||||
@il-mainbar-small-btn-height: @il-standard-page-small-mainbar-height;
|
||||
@il-mainbar-small-btn-width: 75px;
|
||||
@il-metabar-small-entry-height: @il-standard-page-small-header-height;
|
||||
@il-metabar-small-entry-width: @il-standard-page-small-header-height;
|
||||
@il-metabar-small-glyph-size: 2rem;
|
||||
|
||||
|
||||
//== Header (Deprecated, use UI Layout Page Variables instead)
|
||||
//
|
||||
//## Variables that used to control the header. Note: Note the variables here are mostly deprecated and removed with ILIAS 8. Use the Variables listed in Layout (UI Layout Page).
|
||||
//** controls the height of the "logo" (that [ILIAS] thingy on top the page in the standard).
|
||||
@il-logo-height: 50px;
|
||||
//** controls the width of the "logo" (that [ILIAS] thingy on top the page in the standard).
|
||||
@il-logo-width: 50px;
|
||||
//** controls margin around the logo
|
||||
@il-logo-margin: 15px 15px 0;
|
||||
@il-logo-resp-margin: 10px;
|
||||
//** controls the height of the "logo" for small screens.
|
||||
@il-logo-resp-height: 40px;
|
||||
//** controls the width of the "logo" for small screens.
|
||||
@il-logo-resp-width: 40px;
|
||||
//** controls the height of the "main header" (that white thingy with the logo and the main menu in it).
|
||||
@il-main-header-height: 30px + @il-logo-height;
|
||||
//** controls the height of the border underneath the main header.
|
||||
@il-header-border-bottom-height: 3px;
|
||||
//** controls the color of the border underneath the main header.
|
||||
@il-header-border-bottom-color: @il-neutral-light-color;
|
||||
//** that is the height of the complete header, that is that thingy upon the real content of the page.
|
||||
@il-header-height: ceil((@il-main-header-height + @il-top-bar-height - @il-header-border-bottom-height));
|
||||
//** controls the bg color of the main header.
|
||||
@il-main-header-bg: @il-main-bg;
|
||||
//** controls the position of the top of the main menu.
|
||||
@il-main-menu-top: -38px;
|
||||
//** controls the position of the left side of the main menu.
|
||||
@il-main-menu-left: 15px + @il-logo-width;
|
||||
@il-main-menu-margin: @il-main-menu-top 0 0 @il-main-menu-left;
|
||||
//** controls background color of the former "topbar". Still used in some places. For the Background of the Header, use il-main-header-bg Will be removed in ILIAS 8
|
||||
@il-top-bar-bg: @il-neutral-color;
|
||||
//** Formarly controled the text color in ILIAS 8. Will be removed with ILIAS 8.
|
||||
@il-top-bar-color: white;
|
||||
//** Formarly controled the text color in ILIAS 8. Will be removed with ILIAS 8.
|
||||
@il-top-bar-height: 40px;
|
||||
//** controls colors and bg colors of the "topbar" buttons
|
||||
@il-top-bar-link-bg: lighten(@il-neutral-color, 20%);
|
||||
@il-top-bar-link-color: lighten(@il-neutral-color, 70%);
|
||||
@il-top-bar-link-hover-bg: lighten(@il-neutral-color, 42%);
|
||||
@il-top-bar-link-hover-color: white;
|
||||
//** controls colors and bg colors of the "topbar" dropdowns
|
||||
@il-top-bar-dropdown-bg: lighten(@il-neutral-color, 42%);
|
||||
@il-top-bar-dropdown-color: lighten(@il-neutral-color, 70%);
|
||||
@il-top-bar-dropdown-link-bg: transparent;
|
||||
@il-top-bar-dropdown-link-color: lighten(@il-neutral-color, 70%);
|
||||
@il-top-bar-dropdown-link-hover-bg: @il-highlight-bg;
|
||||
@il-top-bar-dropdown-link-hover-color: lighten(@il-neutral-color, 42%);
|
||||
|
||||
//** Variables that used to control the header. Note: Note the variables here are mostly deprecated and removed with ILIAS 8. Use the Variables listed in Layout (UI Layout Page).
|
||||
@il-main-menu-bg: @il-main-header-bg;
|
||||
@il-main-menu-link-color: #808080;
|
||||
@il-main-menu-link-hover-color: #808080;
|
||||
@il-main-menu-link-active-color: #808080;
|
||||
@il-main-menu-link-bg: transparent;
|
||||
@il-main-menu-link-hover-bg: transparent;
|
||||
@il-main-menu-link-active-bg: #fafafa;
|
||||
@il-main-menu-dropdown-bg: @il-main-bg;
|
||||
@il-main-menu-dropdown-link-color: lighten(@il-neutral-color, 10%);
|
||||
@il-main-menu-dropdown-link-hover-color: darken(@il-neutral-color, 5%);
|
||||
@il-main-menu-dropdown-link-bg: transparent;
|
||||
@il-main-menu-dropdown-link-hover-bg: @il-highlight-bg;
|
||||
@il-main-menu-dropdown-header-bg: #f3f3f3;
|
||||
|
||||
//== Footer
|
||||
//
|
||||
//## Variables to control the footer section of ILIAS.
|
||||
|
||||
//** controls background color of the footer.
|
||||
@il-footer-bg-color: @il-main-color;
|
||||
//** controls the color of the text in the footer.
|
||||
@il-footer-color: white;
|
||||
@il-footer-height: 70px;
|
||||
@il-footer-padding: 20px 0 15px 5px;
|
||||
|
||||
//== Buttons
|
||||
//
|
||||
//## For each of ILIAS's buttons, define text, background and border color.
|
||||
|
||||
//** Size of the font displayed inside a button
|
||||
@il-button-font-size: @il-font-size-small;
|
||||
|
||||
//** Text color of the standard button (most button instances)
|
||||
@il-btn-standard-color: white;
|
||||
//** Background color of the standard button (most button instances)
|
||||
@il-btn-standard-bg: @il-main-color;
|
||||
//** Border color of the standard button (most button instances)
|
||||
@il-btn-standard-border: @il-main-color;
|
||||
|
||||
//** Text color of the primary button (most important button on the screen)
|
||||
@il-btn-primary-color: white;
|
||||
//** Background color of the primary button (most important button on the screen)
|
||||
@il-btn-primary-bg: darken(@il-secondary-color, 10%);
|
||||
//** Border color of the primary button (most important button on the screen)
|
||||
@il-btn-primary-border: darken(@il-secondary-color, 10%);
|
||||
|
||||
//** Text color of inactive buttons
|
||||
@il-disabled-btn-color: white;
|
||||
//** Background color of inactive buttons
|
||||
@il-disabled-btn-bg: #b0b0b0;
|
||||
//** Border color of inactive buttons
|
||||
@il-disabled-btn-border: #e0e0e0;
|
||||
|
||||
//** Text color of inactive buttons
|
||||
@il-engaged-btn-color: @il-text-color;
|
||||
//** Background color of inactive buttons
|
||||
@il-engaged-btn-bg: white;
|
||||
|
||||
@il-disabled-btn-bg: #b0b0b0;
|
||||
@il-disabled-btn-border: #b0b0b0;
|
||||
@il-disabled-btn-color: darken(@il-text-color, 20%);
|
||||
//** Background color for tags with relevance 5; by default, color is desaturated in steps of 20%.
|
||||
@il-btn-tag-bg: #75deea;
|
||||
@il-btn-tag-bg-relevance-verylow: desaturate(@il-btn-tag-bg, 80%);
|
||||
@il-btn-tag-bg-relevance-low: desaturate(@il-btn-tag-bg, 60%);
|
||||
@il-btn-tag-bg-relevance-middle: desaturate(@il-btn-tag-bg, 40%);
|
||||
@il-btn-tag-bg-relevance-high: desaturate(@il-btn-tag-bg, 20%);
|
||||
@il-btn-tag-bg-relevance-veryhigh: @il-btn-tag-bg;
|
||||
//** Foreground colors for tags; usually black/white depending on the background color
|
||||
@il-btn-tag-fg-relevance-verylow: contrast(desaturate(@il-btn-tag-bg, 80%));
|
||||
@il-btn-tag-fg-relevance-low: contrast(desaturate(@il-btn-tag-bg, 60%));
|
||||
@il-btn-tag-fg-relevance-middle: contrast(desaturate(@il-btn-tag-bg, 40%));
|
||||
@il-btn-tag-fg-relevance-high: contrast(desaturate(@il-btn-tag-bg, 20%));
|
||||
@il-btn-tag-fg-relevance-veryhigh: contrast(@il-btn-tag-bg);
|
||||
//** Border radius of tags
|
||||
@il-btn-tag-border-radius: 3px;
|
||||
//** margin of tags
|
||||
@il-btn-tag-margin: 2px 4px 2px 0;
|
||||
|
||||
//== Toggle Buttons
|
||||
//
|
||||
//##
|
||||
|
||||
//** The Toggle Button without the Switch
|
||||
@il-btn-toggle-height: 19px;
|
||||
@il-btn-toggle-padding: 25px;
|
||||
@il-btn-toggle-border: 1px solid;
|
||||
@il-btn-toggle-border-color: rgba(0, 0, 0, 0.1);
|
||||
@il-btn-toggle-border-radius: 40px;
|
||||
@il-enabled-btn-toggle-bg: lighten(@il-enabled-btn-toggle-switch-color, 30%);
|
||||
@il-disabled-btn-toggle-bg: lighten(@il-disabled-btn-toggle-switch-color, 30%);
|
||||
|
||||
//** The Switch of the Toggle Button
|
||||
@il-btn-toggle-switch-position-top: -4px;
|
||||
@il-btn-toggle-switch-size: 25px;
|
||||
@il-btn-toggle-switch-border-color: rgba(0, 0, 0, 0.2);
|
||||
@il-btn-toggle-switch-transition: all 0.25s ease-in-out;
|
||||
@il-enabled-btn-toggle-switch-color: @il-main-color;
|
||||
@il-enabled-btn-toggle-switch-position-left: 53%;
|
||||
@il-disabled-btn-toggle-switch-color: #808080;
|
||||
@il-disabled-btn-toggle-switch-position-left: -6%;
|
||||
|
||||
//** The ON/OFF Label of the Toggle Button
|
||||
@il-btn-toggle-label-position-top: 0;
|
||||
@il-btn-toggle-label-on-position-left: 5px;
|
||||
@il-btn-toggle-label-off-position-left: 23px;
|
||||
@il-btn-toggle-label-font-weight: 600;
|
||||
@il-btn-toggle-label-font-size: 0.9em;
|
||||
@il-btn-toggle-label-on-color: @il-main-bg;
|
||||
|
||||
//** on
|
||||
@il-btn-toggle-bg-color-on: @il-secondary-color;
|
||||
@il-btn-toggle-border-color-on: #bfbfbf;
|
||||
@il-btn-toggle-switch-bg-color-on: @il-main-dark-bg;
|
||||
@il-btn-toggle-switch-border-color-on: #bfbfbf;
|
||||
|
||||
//** off
|
||||
@il-btn-toggle-bg-color-off: @il-main-dark-bg;
|
||||
@il-btn-toggle-border-color-off: #bfbfbf;
|
||||
@il-btn-toggle-switch-bg-color-off: @il-main-dark-bg;
|
||||
@il-btn-toggle-switch-border-color-off: #bfbfbf;
|
||||
|
||||
//** unavailable
|
||||
@il-btn-toggle-bg-color-unavailable: #cdcdcd;
|
||||
@il-btn-toggle-border-color-unavailable: #bfbfbf;
|
||||
@il-btn-toggle-switch-bg-color-unavailable: lighten(@il-neutral-color, 30%);
|
||||
@il-btn-toggle-switch-border-color-unavailable: #bfbfbf;
|
||||
|
||||
//== Standard Form
|
||||
//
|
||||
//## Variables used to style the ILIAS standard form used e.g. in the "Settings"-Tab
|
||||
|
||||
//** Textcolor used in the forms sections bodies
|
||||
@il-standard-form-color: @il-text-color;
|
||||
//** Textcolor used in the bylines (descriptions) of the input fields of a form
|
||||
@il-standard-form-byline-color: @il-text-light-color;
|
||||
//** Textcolor used in the labels (identifiers) of the input fields of a form
|
||||
@il-standard-form-label-color: @il-text-color;
|
||||
//** Background color used in the
|
||||
@il-standard-form-bg: @il-main-bg;
|
||||
//** Textsize used in the forms body
|
||||
@il-standard-form-font-size: @il-font-size-small;
|
||||
//** Textsize used in the bylines (descriptions) of the input fields of a form
|
||||
@il-standard-form-byline-font-size: 85%;
|
||||
|
||||
//** Textcolor used in the forms header, the sections header and the footer
|
||||
@il-standard-form-header-color: @il-text-color;
|
||||
//** Background color used in the forms header, the sections header and the footer
|
||||
@il-standard-form-header-bg: @il-content-bg;
|
||||
//** Textsize color used in the forms header and the sections header
|
||||
@il-standard-form-header-font-size: ceil((@il-font-size-base * 1.3));
|
||||
//** Textsize color used in the form headers the section headers byline (description)
|
||||
@il-standard-form-header-byline-font-size: @il-font-size-small;
|
||||
//** Background color used for dependant groups (sub forms) in standard forms
|
||||
@il-standard-form-dependant-group-bg: @il-main-dark-bg;
|
||||
|
||||
//** Minimal size of non-empty buttons inside forms
|
||||
@il-button-min-width-forms: 60px;
|
||||
|
||||
//== Standard Filter
|
||||
//
|
||||
//## Variables used to style the ILIAS Standard Filter
|
||||
|
||||
//** Filter Bar
|
||||
@il-standard-filter-bar-btn-font-size: 1.2em;
|
||||
@il-standard-filter-bar-glyph-padding-right: 0.3em;
|
||||
@il-standard-filter-bar-toggle-padding-left: 10px;
|
||||
|
||||
//** Input Fields Area
|
||||
@il-standard-filter-input-section-border-top: 1px solid @il-main-border-color;
|
||||
@il-standard-filter-input-section-padding-bottom: 40px;
|
||||
@il-standard-filter-input-section-margin: 0;
|
||||
@il-standard-filter-input-section-multiselect-margin: 0.8em;
|
||||
@il-standard-filter-input-group-width: 100%;
|
||||
@il-standard-filter-input-group-height: 25px;
|
||||
@il-standard-filter-select-input-border: 1px solid @il-main-border-dark-color;
|
||||
@il-standard-filter-label-width: 30%;
|
||||
@il-standard-filter-input-remove-width: 10%;
|
||||
@il-standard-filter-font-color-disabled: #b0b0b0;
|
||||
@il-standard-filter-controls-bottom: 0px;
|
||||
@il-standard-filter-controls-padding-left: 15px;
|
||||
@il-standard-filter-controls-padding-bottom: 6px;
|
||||
|
||||
//** Division with active inputs under Filter Bar
|
||||
@il-standard-filter-active-inputs-margin-left: 0;
|
||||
@il-standard-filter-active-inputs-padding-vertical: 0;
|
||||
@il-standard-filter-active-inputs-font-size: 0.8em;
|
||||
|
||||
//** Popovers
|
||||
@il-standard-filter-screen-sm-input-popover-padding: 4px;
|
||||
@il-standard-filter-screen-sm-input-popover-margin-top: 0;
|
||||
@il-standard-filter-screen-sm-input-popover-border: 0;
|
||||
@il-standard-filter-add-input-popover-list-margin: 0;
|
||||
@il-standard-filter-add-input-popover-list-padding: 0;
|
||||
@il-standard-filter-add-input-popover-list-button-width: 100%;
|
||||
|
||||
//== Input Fields
|
||||
//
|
||||
//## Variables used to style the ILIAS input fields (e.g. Text Inputs etc.)
|
||||
@il-FormColor: @il-text-light-color;
|
||||
@il-FormBgColor: @il-main-bg;
|
||||
@il-FormInputFontSize: @il-font-size-small;
|
||||
@il-textarea-height: (floor(4 * (@il-standard-form-font-size * @il-line-height-base)) + (@padding-base-vertical * 2) + 2);
|
||||
|
||||
//** Tag Input
|
||||
@il-input-tag-color-bg: @il-btn-standard-bg;
|
||||
@il-input-tag-color-text: @il-btn-standard-color;
|
||||
@il-input-tag-color-disabled: #EEEEEE;
|
||||
|
||||
//** determines display of icons in dropdowns, 'none' for no display and 'inline' for display
|
||||
@il-nav-icons: inline;
|
||||
|
||||
//== Tables
|
||||
//
|
||||
//##
|
||||
@il-table-head-bg: @il-main-bg;
|
||||
@il-data-table-bg: @il-main-bg;
|
||||
@il-table-cmd-bg: @il-main-dark-bg;
|
||||
|
||||
//** Presentation Table borders
|
||||
@il-table-presentation-rowborder-top: 1px solid @table-border-color;
|
||||
;
|
||||
|
||||
//** Presentation Table colum widths
|
||||
@il-table-presentation-rowcontrol-colwidth: 5%;
|
||||
@il-table-presentation-contents-colwidth: 95%;
|
||||
|
||||
@il-table-presentation-details-viewcontrols-bg-color: @il-highlight-bg;
|
||||
@il-table-presentation-details-viewcontrols-btn-color: @il-main-color;
|
||||
@il-table-presentation-details-viewcontrols-btn-bg: white;
|
||||
|
||||
//== Toolbar
|
||||
//
|
||||
//##
|
||||
@il-toolbar-margin: 15px; // Margin between toolbar items
|
||||
@il-toolbar-bg: @il-main-bg;
|
||||
@il-toolbar-height: 40px;
|
||||
@il-toolbar-border: 1px solid @il-main-border-color;
|
||||
|
||||
//== Postings
|
||||
//
|
||||
//##
|
||||
@il-posting-by-moderator-bg: #ff9;
|
||||
@il-posting-needs-moderation-bg: #ffe4e4;
|
||||
|
||||
//== Glyph
|
||||
//
|
||||
//##
|
||||
@il-glyph-color: @il-link-color;
|
||||
@il-glyph-hover-color: @il-link-hover-color;
|
||||
@il-glyph-highlighted-color: @il-warning-color;
|
||||
@il-glyph-highlighted-hover-color: @il-warning-color;
|
||||
@il-glyph-disabled-color: @il-neutral-light-color;
|
||||
|
||||
//== Counter
|
||||
//
|
||||
//##
|
||||
@il-counter-padding: 2px 4px;
|
||||
@il-counter-font-size: 9px;
|
||||
@il-counter-margin-left: -4px;
|
||||
|
||||
|
||||
//== Status Counter
|
||||
//
|
||||
//##
|
||||
@il-counter-status-bg: @il-neutral-light-color;
|
||||
@il-counter-status-margin-top: 10px;
|
||||
|
||||
|
||||
//== Novelty Counter
|
||||
//
|
||||
//##
|
||||
@il-counter-novelty-bg: @il-warning-color;
|
||||
@il-counter-novelty-margin-top: -5px;
|
||||
|
||||
|
||||
//== Dropzones
|
||||
//
|
||||
//## Customizes the Drozpones component
|
||||
|
||||
//** Default background color used for dropzones.
|
||||
@il-dropzone-bg: @il-main-bg;
|
||||
@il-dropzone-bg-inactive: #F4F4F4;
|
||||
//** Background color used when a dropzone is highlighted (not when hovered).
|
||||
@il-dropzone-highlight-bg: #FFFFD6;
|
||||
//** Background color used when a dropzone is hovered.
|
||||
@il-dropzone-hover-bg: #FFF9BC;
|
||||
@il-dropzone-border-radius: 0px;
|
||||
@il-dropzone-border-style: dashed;
|
||||
@il-dropzone-border-width: 1px;
|
||||
//** Default border color
|
||||
@il-dropzone-border-color: @il-main-border-dark-color;
|
||||
//** Border color used when a dropzone is hovered.
|
||||
@il-dropzone-border-color-hover: darken(@il-main-border-dark-color, 10%);
|
||||
//** Border of one file after dragging them to the dropzone
|
||||
@il-dropzone-filelist-border-color: @il-dropzone-border-color;
|
||||
@il-dropzone-filelist-border-type: solid;
|
||||
@il-dropzone-filelist-border-width: @il-dropzone-border-width;
|
||||
@il-dropzone-filelist-border-radius: @il-dropzone-border-radius;
|
||||
|
||||
|
||||
//== Popover
|
||||
//
|
||||
//## Customizes the Popover component
|
||||
|
||||
//** Minimal width of the Popover
|
||||
@il-popover-min-width: 50px;
|
||||
//** Minimal height of the Popover
|
||||
@il-popover-min-height: 32px;
|
||||
//** Maximal width of the Popover
|
||||
@il-popover-max-width: 400px;
|
||||
//** Background color of the Popover
|
||||
@il-popover-background-color: @il-main-dark-bg;
|
||||
//** Background color of the title
|
||||
@il-popover-title-background-color: @il-popover-background-color;
|
||||
//** Border color of the Popover
|
||||
@il-popover-border-color: rgba(0, 0, 0, .2);
|
||||
//** Width of the arrow pointing from the Popover to its Triggerer component, e.g. a Button
|
||||
@il-popover-arrow-width: 10px;
|
||||
//** Background color of the arrow
|
||||
@il-popover-arrow-background-color: @il-popover-background-color;
|
||||
//** z-index used for the Popover
|
||||
@il-popover-z-index: 9999;
|
||||
//** Maximum Height of a popover (overflow scroll)
|
||||
@il-popover-max-height: 500px;
|
||||
|
||||
|
||||
//== Tooltips
|
||||
//
|
||||
//## Tooltips displayed by the online help
|
||||
//** Text color of those tooltips
|
||||
@il-tooltip-color: white;
|
||||
//** Background color of those tooltips
|
||||
@il-tooltip-bg-color: @il-main-color;
|
||||
//** Border color of those tooltips
|
||||
@il-tooltip-border-color: @il-main-color;
|
||||
//** Border radius of those tooltips
|
||||
@il-tooltip-border-radius: 4px;
|
||||
//** Shadow of those tooltips
|
||||
@il-tooltip-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
|
||||
|
||||
|
||||
//== Divider
|
||||
//
|
||||
//##
|
||||
@il-divider-bg: @il-main-bg;
|
||||
|
||||
@il-divider-color: @il-text-color;
|
||||
|
||||
@il-divider-color: @il-text-color;
|
||||
|
||||
//== Item
|
||||
//
|
||||
//##
|
||||
@il-item-divider-padding: 10px 0 0 0;
|
||||
@il-item-divider-margin: 0 0 10px 0;
|
||||
@il-item-divider-border-bottom: dashed 0.5px @il-main-border-color;
|
||||
@il-item-description-padding: 10px 0 0 0;
|
||||
@il-item-padding: @padding-large-horizontal;
|
||||
@il-item-marker-border-left: 5px solid;
|
||||
@il-item-h5-margin: 4px 0px 2px 0px;
|
||||
@il-item-border-bottom: 2px solid @il-content-bg;
|
||||
@il-item-border-bottom-small: 1px solid @il-content-bg;
|
||||
|
||||
|
||||
//== Charts
|
||||
//
|
||||
//## Charts are used to graphically represent data in various forms such as maps, graphs or diagrams.
|
||||
|
||||
@il-chart-item-active-bg: @il-main-color;
|
||||
@il-chart-item-active-color: white;
|
||||
@il-chart-item-inactive-bg: #e0e0e0;
|
||||
@il-chart-item-inactive-color: @il-text-color;
|
||||
@il-chart-item-space: 2px;
|
||||
|
||||
//** Progress Meter: minimal width
|
||||
@il-chart-progressmeter-min-width: 80px;
|
||||
//** Progress Meter: maximal width / height
|
||||
@il-chart-progressmeter-max-width: 800px;
|
||||
//** Progress Meter: background stroke width
|
||||
@il-chart-progressmeter-bg-stroke-width: 6;
|
||||
//** Progress Meter: multi bar progress stroke width
|
||||
@il-chart-progressmeter-multi-stroke-width: (@il-chart-progressmeter-mini-bg-stroke-width / 3);
|
||||
//** Progress Meter: single bar progress stroke width
|
||||
@il-chart-progressmeter-mono-stroke-width: (@il-chart-progressmeter-mini-bg-stroke-width - 1);
|
||||
//** Progress Meter: background color
|
||||
@il-chart-progressmeter-bg-color: #dddddd;
|
||||
//** Progress Meter: marker color
|
||||
@il-chart-progressmeter-marker-color: #efefef;
|
||||
//** Progress Meter: marker border color
|
||||
@il-chart-progressmeter-marker-shadow-color: #bcbcbc;
|
||||
//** Progress Meter main bar: success color
|
||||
@il-chart-progressmeter-success: #6ea03c;
|
||||
//** Progress Meter main bar: no-success color
|
||||
@il-chart-progressmeter-no-success: #d9534f;
|
||||
//** Progress Meter comparision bar: no-user-score color
|
||||
@il-chart-progressmeter-not-active: #f0ad4e;
|
||||
//** Progress Meter comparision bar: user-score color
|
||||
@il-chart-progressmeter-active: #aaaaaa;
|
||||
//** Progress Meter score text color
|
||||
@il-chart-progressmeter-score-text-color: #000000;
|
||||
//** Progress Meter info-text color
|
||||
@il-chart-progressmeter-info-text-color: #bcbcbc;
|
||||
|
||||
//** Progress Meter Fixed-Size: width
|
||||
@il-chart-progressmeter-fixed-size: 350px;
|
||||
|
||||
//** Progress Meter Mini: minimal width
|
||||
@il-chart-progressmeter-mini-min-width: 20px;
|
||||
//** Progress Meter Mini: maximal width / height
|
||||
@il-chart-progressmeter-mini-max-width: 250px;
|
||||
//** Progress Meter Mini: background stroke width
|
||||
@il-chart-progressmeter-mini-bg-stroke-width: 5;
|
||||
//** Progress Meter Mini: progress stroke width
|
||||
@il-chart-progressmeter-mini-stroke-width: @il-chart-progressmeter-mini-bg-stroke-width;
|
||||
//** Progress Meter Mini: marker stroke width
|
||||
@il-chart-progressmeter-mini-marker-stroke-width: 4;
|
||||
//** Progress Meter Mini: background color
|
||||
@il-chart-progressmeter-mini-bg-color: #dddddd;
|
||||
//** Progress Meter Mini: marker color
|
||||
@il-chart-progressmeter-mini-marker-color: #bcbcbc;
|
||||
//** Progress Meter Mini: progress stroke color (no success)
|
||||
@il-chart-progressmeter-mini-no-success: #d9534f;
|
||||
//** Progress Meter Mini: progress stroke color (success)
|
||||
@il-chart-progressmeter-mini-success: #6ea03c;
|
||||
|
||||
//== Icons
|
||||
//
|
||||
//## Icons are used to represent (and quickly identify) objects.
|
||||
|
||||
//** Path to the font of the glyphicons. Note that the path must be put in "" for less to compile.
|
||||
@il-icon-font-path: "../../node_modules/bootstrap/fonts/";
|
||||
//** if left unchanged, you have to copy all the background images to your skin/images folder. To use the delos background images in your skin, please change this value (in custom less data or in variables.less of your custom skin) to "../../../../templates/default/images/"
|
||||
@il-background-images-path: "images/";
|
||||
|
||||
//** Size for icons: xsmall is used in the tree. e.g.
|
||||
@il-icon-size-xsmall: 15px;
|
||||
//** Size for icons: Small is used in the tree. e.g.
|
||||
@il-icon-size-small: 20px;
|
||||
//** Size for icons: Medium is used in the content-listing. e.g.
|
||||
@il-icon-size-medium: 35px;
|
||||
//** Size for icons: Large is used in the header. e.g.
|
||||
@il-icon-size-large: 45px;
|
||||
//** Path for standard icons in ILIAS
|
||||
@il-standard-icon-path: @il-background-images-path;
|
||||
//** Path for standard icons in ILIAS
|
||||
@il-standard-outlined-icon-path: "@{il-standard-icon-path}outlined/";
|
||||
//** Standard filter for the outlined icons to be used (rendering them with a black outline). This may be different in each context.
|
||||
@il-standard-outlined-icon-filter: brightness(0);
|
||||
//** Standard filter for the outlined icons to be used if disabled (rendering them with a grey outline).
|
||||
@il-standard-disabled-icon-filter: grayscale(100%);
|
||||
//** Standard filter for the outlined icons to be used if disabled (rendering them with a grey outline).
|
||||
@il-standard-outlined-disabled-icon-filter: contrast(0%);
|
||||
|
||||
//== Avatar
|
||||
//
|
||||
//** Size for avatars: used in the header. e.g. standard (and recommended) is @il-icon-size-large
|
||||
@il-avatar-size: @il-icon-size-large;
|
||||
@il-avatar-size-small: @il-avatar-size / 2;
|
||||
@il-avatar-size-large: @il-avatar-size * 2;
|
||||
//** border-radius for image avatar
|
||||
@il-avatar-border-radius: 50%;
|
||||
//** border size for letter avatars
|
||||
@il-avatar-border-size: 2px;
|
||||
@il-avatar-small-border-size: 0px;
|
||||
//** border style for letter avatars
|
||||
@il-avatar-border-style: solid;
|
||||
//** border color for picture avatars
|
||||
@il-avatar-picture-border-color: @il-main-border-color;
|
||||
//** there are 26 colors for letter avatar backgrounds, this is for the abbreviation ant the border color
|
||||
@il-avatar-letter-border-color-contrast-lighten: 40%;
|
||||
@il-avatar-letter-border-color-contrast-darken: 20%;
|
||||
//** change the abbreviations font weight
|
||||
@il-avatar-letter-abbreviation-font-weight: lighter;
|
||||
//** change the abbreviations font transform
|
||||
@il-avatar-letter-abbreviation-font-transform: inherit;
|
||||
//** all variants of letter avatar background colors (MUST be 26), note for a11y reason, they must be in contrast 3x1 to white (foreground color)
|
||||
@il-avatar-letter-color-variants: #0e6252, #107360, #aa890a, #c87e0a, #176437, #196f3d, #bf6516, #a04000, #1d6fa5, #1b557a, #bf2718, #81261d, #713b87, #522764, #78848c, #34495e, #2c3e50, #566566, #90175a, #9e2b6e, #d22f10, #666d4e, #715a32, #83693a, #963a30, #e74c3c;
|
||||
|
||||
|
||||
//== System Info
|
||||
//
|
||||
//##
|
||||
/** headline text transform **/
|
||||
@il-standard-page-system-info-headline-transform: uppercase;
|
||||
@il-standard-page-system-info-headline-font-weight: bold;
|
||||
/** inline shadow of a message container **/
|
||||
@il-standard-page-system-info-shadow: inset 0px -10px 4px -10px rgba(0, 0, 0, 0.25);
|
||||
/** border configuration, the color is automatically computed from the three color variants **/
|
||||
@il-standard-page-system-info-border-color: @il-main-border-color;
|
||||
@il-standard-page-system-info-border-top-and-bottom: none;
|
||||
@il-standard-page-system-info-border-left-and-right: none;
|
||||
/** nagtive or positive contrast color for text and glyph **/
|
||||
@il-standard-page-system-info-contrast: 60%;
|
||||
/** contrast threshold for contrast color **/
|
||||
@il-standard-page-system-info-contrast-threshold: 43%;
|
||||
/** three color variants for neutral, important, breaking Head Infos **/
|
||||
@il-standard-page-system-info-color-variant-neutral: lighten(@il-main-color, 50%); // looks nice with @il-mainbar-btn-bg-color as well
|
||||
@il-standard-page-system-info-color-variant-important: lighten(@il-danger-color, 40%);
|
||||
@il-standard-page-system-info-color-variant-breaking: darken(@il-danger-color, 10%);
|
||||
|
||||
//== View Control
|
||||
//
|
||||
//##
|
||||
@il-vc-glyph-padding-vertical: @padding-base-vertical+2;
|
||||
@il-vc-glyph-padding-horizontal: @padding-base-horizontal;
|
||||
@il-vc-glyph-hover-bg: lighten(@il-main-color, 5%);
|
||||
@il-vc-mode-btn-active: @il-vc-glyph-hover-bg;
|
||||
@il-vc-pagination-btn-active-bg: @il-main-bg;
|
||||
|
||||
//== Card
|
||||
//
|
||||
//##
|
||||
@il-card-border: 1px solid @il-main-border-color;
|
||||
@il-card-background: @il-main-bg;
|
||||
@il-card-highlight-bg: @il-warning-color;
|
||||
@il-card-highlight-height: @il-padding-large-vertical;
|
||||
@il-card-list-key-color: @il-text-light-color;
|
||||
@il-card-repository-head-color: rgba(0, 0, 0, 0.5);
|
||||
@il-card-repository-dropdown-border: @il-main-border-color 1px solid;
|
||||
@il-card-repository-outlined-icon-filter: invert(1);
|
||||
@il-card-repository-outlined-disabled-icon-filter: @il-card-repository-outlined-icon-filter;
|
||||
//** Sets the maximum width of cards in small screens
|
||||
@il-card-max-width-xs: 350px;
|
||||
@il-card-box-shadow: 0 1px 2px rgba(0, 0, 0, 15%), 0 0px 0px rgba(0, 0, 0, 15%);
|
||||
|
||||
|
||||
//== Workflow
|
||||
//
|
||||
//##Workflow-steps have an icon indicating their status. The label changes color and size accordingly.
|
||||
@il-workflow-icon-size: 21px;
|
||||
@il-workflow-icon-font-color: white;
|
||||
@il-workflow-available-text-color: @il-text-color;
|
||||
@il-workflow-unavailable-text-color: @il-main-border-color;
|
||||
|
||||
//== Message Boxes
|
||||
//
|
||||
//##
|
||||
@il-messagebox-link-bullet: "\00BB \0020";
|
||||
@il-messagebox-margin-top: 10px;
|
||||
@il-messagebox-link-list-margin-top: 15px;
|
||||
|
||||
//== Modal
|
||||
//
|
||||
//## Variables that modify and minpulate the appearance of modals
|
||||
//** Controls the speed of the fade in/out of the modal
|
||||
@il-modal-transition-speed: 0.15s;
|
||||
|
||||
//== Tree
|
||||
//
|
||||
//## Basic adjustments for the tree
|
||||
@il-tree-node-indentation: @il-font-size-base;
|
||||
//** Vertical Space between nodes
|
||||
@il-tree-node-vertical-spacing: 3px;
|
||||
//** Horizontal space between expand/collapse icon, an optional node icon and node label
|
||||
@il-tree-node-horizontal-spacing: 4px;
|
||||
//== Characteristic Value Listing
|
||||
//** item rows layout
|
||||
@il-characteristic-value-border-color: @il-main-border-color;
|
||||
|
||||
//== DropDowns
|
||||
//
|
||||
//##
|
||||
@il-font-size-dropdown: @font-size-base;
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version = "1.0" encoding = "UTF-8"?>
|
||||
<template xmlns = "http://www.w3.org" version = "$Id$" name = "ILIAS">
|
||||
<style name = "Delos"
|
||||
id = "delos"
|
||||
image_directory = "images"/>
|
||||
</template>
|
||||
@@ -0,0 +1,123 @@
|
||||
{MAINMENU}
|
||||
|
||||
<!-- BEGIN sr_focus -->
|
||||
<script>il.Util.addOnLoad(il.Util.setStdScreenReaderFocus); var il_sr_opt = true;</script>
|
||||
<!-- END sr_focus -->
|
||||
|
||||
<!-- BEGIN tree_mode -->
|
||||
<a {TREE_ACC_KEY} class="ilTreeView{RIGHT}<!-- BEGIN tree_lns --> kilLeftNavSpace<!-- END tree_lns -->" href="{LINK_MODE}" target="{TARGET_TREE}" id="imgtree">
|
||||
<img id="ilSideBarIcon" src="{IMG_TREE}" alt="{ALT_TREE}" title="{ALT_TREE}" /></a>
|
||||
<!-- END tree_mode -->
|
||||
<div id="mainspacekeeper" class="container-fluid {MAINMENU_SPACER}">
|
||||
<div class="row" style="position: relative;">
|
||||
<!-- BEGIN left_nav -->
|
||||
<div id="left_nav" class="ilLeftNav hidden-print">{LEFT_NAV_CONTENT}</div>
|
||||
<!-- END left_nav -->
|
||||
<div id="fixed_content" class="<!-- BEGIN left_nav_space -->ilLeftNavSpace<!-- END left_nav_space --> ilContentFixed" >
|
||||
<div id="mainscrolldiv" {FRAME_BG_COLOR}>
|
||||
{STATUSLINE}
|
||||
|
||||
<!-- BEGIN banner_bl -->
|
||||
<div class="ilFrameFixedWidthHeader">
|
||||
<div class="ilHeaderBanner" style="height:{BANNER_HEIGHT}px">
|
||||
<img class="ilHeaderImg" src="{BANNER_URL}">
|
||||
</div>
|
||||
<div class="ilClearFloat"></div>
|
||||
</div>
|
||||
<!-- END banner_bl -->
|
||||
|
||||
<div class="media il_HeaderInner"{FILEUPLOAD_DROPZONE_ID}>
|
||||
<!-- BEGIN head_action -->
|
||||
<div class="ilHeadAction hidden-print" id="il_head_action">
|
||||
<!-- BEGIN head_action_inner -->{HEAD_ACTION}<!-- END head_action_inner -->
|
||||
</div>
|
||||
<!-- END head_action -->
|
||||
|
||||
<!-- BEGIN headerbl -->
|
||||
<!-- BEGIN header_image -->
|
||||
<img id="headerimage" class="media-object" src="{IMG_HEADER}" alt="{IMAGE_ALT}" title="{IMAGE_DESC}" />
|
||||
<!-- END header_image -->
|
||||
<h1 class="media-heading ilHeader"><a class="ilAccAnchor" id="il_mhead_t_focus" {HEADER_COLOR}{HEADER_URL}>{HEADER}</a></h1>
|
||||
<!-- END headerbl -->
|
||||
<div class="media-body">
|
||||
<!-- BEGIN header_desc -->
|
||||
<div class="ilHeaderDesc">{H_DESCRIPTION}</div><!-- END header_desc -->
|
||||
<!-- BEGIN header_alert -->
|
||||
<div class="ilHeaderAlert">
|
||||
<!-- BEGIN header_alert_prop_name -->
|
||||
{H_PROP} <!-- END header_alert_prop_name -->{H_VALUE}</div><!-- END header_alert -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- BEGIN header_fileupload -->
|
||||
{HEADER_FILEUPLOAD_SCRIPT}
|
||||
<!-- END header_fileupload -->
|
||||
|
||||
<!-- BEGIN tree_icons -->
|
||||
<div class="il_TreeIcons ilNoDisplay">
|
||||
<!-- BEGIN top -->
|
||||
<a class="{CLASS_TOP} ilNoDisplay" href="{LINK_TOP}" <!-- BEGIN target_top -->target="{TARGET_TOP}"<!-- END target_top -->
|
||||
id="imgtop"><img src="{IMG_TOP}" <!-- BEGIN alt_top -->alt="{ALT_TOP}" title="{ALT_TOP}" <!-- END alt_top -->/></a>
|
||||
<!-- END top -->
|
||||
</div>
|
||||
<!-- END tree_icons -->
|
||||
|
||||
<div class="ilClearFloat"><!-- BEGIN stop_floating --> <!-- END stop_floating --></div>
|
||||
|
||||
{TABS}
|
||||
<!-- BEGIN tabs_outer_start --><div class="ilTabsContentOuter"><div class="clearfix"></div><!-- END tabs_outer_start -->
|
||||
{SUB_TABS}
|
||||
<span class="ilAccHidden"><a id="after_sub_tabs"></a></span>
|
||||
<!-- BEGIN tabs_inner_start --><!-- END tabs_inner_start -->
|
||||
<!-- BEGIN mess --><div class="ilAdminRow">{MESSAGE}</div><!-- END mess -->
|
||||
<!-- BEGIN page_form_start -->
|
||||
<form id="main_page_form" action="{PAGE_FORM_ACTION}" method="post">
|
||||
<!-- END page_form_start -->
|
||||
<div>
|
||||
<!-- BEGIN adm_view_components -->
|
||||
<div class="ilAdminRow">{ADM_PANEL1}</div>
|
||||
<!-- END adm_view_components -->
|
||||
</div>
|
||||
|
||||
<div class="container-fluid" id="ilContentContainer">
|
||||
<div class="row">
|
||||
|
||||
<div id="il_center_col" class="<!-- BEGIN center_col_width -->{CENTER_COL}<!-- END center_col_width -->">
|
||||
<!-- BEGIN add_commands -->
|
||||
<div class="ilNewObjectSelector">
|
||||
{SELECT_OBJTYPE_REPOS}
|
||||
</div>
|
||||
<!-- END add_commands -->
|
||||
<!-- BEGIN toolbar_buttons -->{BUTTONS}<!-- END toolbar_buttons -->
|
||||
{RTE_SWITCH}
|
||||
{ADM_CONTENT}
|
||||
{OBJECTS}
|
||||
{SYSTEMSETTINGS}
|
||||
<!-- BEGIN adm_view_components2 -->
|
||||
<div style="margin-bottom:10px;">{ADM_PANEL2}</div>
|
||||
<!-- END adm_view_components2 -->
|
||||
</div>
|
||||
|
||||
<!-- BEGIN left_column -->
|
||||
<div id="il_left_col" class="{LEFT_COL_CLASS}">{LEFT_CONTENT}</div>
|
||||
<!-- END left_column -->
|
||||
|
||||
<!-- BEGIN right_column -->
|
||||
<div id="il_right_col" class="col-sm-3">{RIGHT_CONTENT}</div>
|
||||
<!-- END right_column -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- BEGIN print_content --><div class="ilPrintContent">{PRINT_CONTENT}</div><!-- END print_content -->
|
||||
<!-- BEGIN page_form_end --></form><!-- END page_form_end -->
|
||||
<!-- BEGIN tabs_inner_end --><!-- END tabs_inner_end -->
|
||||
<!-- BEGIN tabs_outer_end --></div><!-- END tabs_outer_end -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="minheight"></div>
|
||||
<footer id="ilFooter" class="ilFooter hidden-print"><div class="container-fluid ilContainerWidth">
|
||||
<div class="row"><div class="ilFooterContainer form-inline">{PRMLINK} {FOOTER}</div></div></div></footer>
|
||||
{LIGHTBOX}
|
||||
@@ -0,0 +1,11 @@
|
||||
<div class="ilToolbar"><h3 class="ilAccHeadingHidden">{TXT_FUNCTIONS}</h3>
|
||||
<!-- BEGIN btn_image --><img src="{IMG_SRC}" alt="{IMG_ALT}" /><!-- END btn_image -->
|
||||
<!-- BEGIN btn_row -->
|
||||
<!-- BEGIN btn_cell -->
|
||||
<a {BTN_ACC_KEY} class="btn btn-default{BTN_CLASS}" href="{BTN_LINK}" {BTN_TARGET}> {BTN_TXT} </a>
|
||||
<!-- END btn_cell -->
|
||||
<!-- BEGIN btn_sub -->
|
||||
<input class="btn btn-default" type="submit" name="cmd[{SUB_CMD}]" value="{SUB_TXT}" />
|
||||
<!-- END btn_sub -->
|
||||
<!-- END btn_row -->
|
||||
</div>
|
||||
@@ -0,0 +1,6 @@
|
||||
<!-- BEGIN ErrorLink -->
|
||||
<!-- additional link e.g. by WebAccessChecker -->
|
||||
<p>
|
||||
<a class="btn btn-default" href="{LINK}">{TXT_LINK}</a>
|
||||
</p>
|
||||
<!-- END ErrorLink -->
|
||||
@@ -0,0 +1,29 @@
|
||||
<div {ID} class="ilExplorerFrame">
|
||||
<table class="ilExplorer"><tr><td class="ilExpH">
|
||||
<div class="ilExpH">
|
||||
<h1 class="ilExplorerHead">{TXT_EXPLORER_HEADER}</h1>
|
||||
</div>
|
||||
</td></tr><tr><td class="ilExpBody">
|
||||
<div class="il_Explorer">
|
||||
{EXPLORER}
|
||||
<br/>
|
||||
<div>
|
||||
<form action="{ACTION}" method="post">
|
||||
<input class="submit" type="submit" name="cmd[refresh]" value="{EXP_REFRESH}" />
|
||||
<!-- BEGIN exp_button -->
|
||||
<input class="submit" type="submit" name="cmd[{CMD_EXP_BTN}]" value="{TXT_EXP_BTN}" />
|
||||
<!-- END exp_button -->
|
||||
<!-- BEGIN exp2_button -->
|
||||
<input class="submit" type="submit" name="{CMD_EXP2_BTN}" value="{TXT_EXP2_BTN}" />
|
||||
<!-- END exp2_button -->
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
function updater(exp_id, script)
|
||||
{
|
||||
il.Explorer.refresh(exp_id, script);
|
||||
}
|
||||
</script>
|
||||
</td></tr></table>
|
||||
</div>
|
||||
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{WINDOW_TITLE} {PAGETITLE}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="{LOCATION_STYLESHEET}" />
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
|
||||
</head>
|
||||
<frameset cols="{WIDTH_LEFT},{WIDTH_RIGHT}">
|
||||
<frame src="{SRC_LEFT}" title="{TITLE_LEFT}" name="{NAME_LEFT}" id="{NAME_LEFT}" marginwidth="0" marginheight="0" scrolling="auto" />
|
||||
<frame src="{SRC_RIGHT}" title="{TITLE_RIGHT}" name="{NAME_RIGHT}" id="{NAME_RIGHT}" marginwidth="0" marginheight="0" scrolling="auto" />
|
||||
<noframes>
|
||||
The repository interface requires a <b>frames-capable</b> web browser.
|
||||
</noframes>
|
||||
</frameset>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user