!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/wincloud_gateway/.cache/admin/src/components/Notifications/Notification/   drwxr-xr-x
Free 13.3 GB of 57.97 GB (22.94%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Li.js (3.27 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
import styled, { createGlobalStyle } from 'styled-components';
import { themePropTypes } from 'strapi-helper-plugin';

const GlobalNotification = createGlobalStyle`
  .notificationIcon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    > div {
      position: absolute;
      width: 20px;
      height: 20px;
      top: 10px;
      left: 5px;
      border-radius: 10px;
      border: 1px solid ${props => props.theme.main.colors.green};
      display: flex;
      svg {
        margin: auto;
        color: ${props => props.theme.main.colors.green};
        width: 10px;
        height: 10px;
      }
    }
  }

  .notificationContent {
    display: flex;
    align-items: center;
    width: 220px;
    margin: 0;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .notificationTitle {
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8rem;
  }

  .notificationClose {
    position: relative;
    display: flex;
    width: 20px;
    margin-right: 15px;
    cursor: pointer;
    opacity: 0.6;
    font-size: 1.4rem;
    color: #BBC2BF;
    transition: opacity 0.1s ease;
    -webkit-font-smoothing: antialiased;

    &:hover {
      opacity: 1;
    }

    svg {
      margin: auto;
      font-size: 1.3rem;
      font-weight: 100!important;
    }
  }

  .notificationSuccess{
    .notificationIcon {
      div {
        border-color: ${props => props.theme.main.colors.green};
      } 
      svg {
        color: ${props => props.theme.main.colors.green};
      }
    } 
  }

  .notificationWarning {
    .notificationIcon {
      div {
        border-color: ${props => props.theme.main.colors.orange};
      } 
      svg {
        color: ${props => props.theme.main.colors.orange};
      }
    } 
  }

  .notificationError {
    .notificationIcon {
      div {
        border-color: ${props => props.theme.main.colors.red};
      } 
      svg {
        color: ${props => props.theme.main.colors.red};
      }
    } 
  }

  .notificationInfo {
    .notificationIcon {
      div {
        border-color: ${props => props.theme.main.colors.blue};
      } 
      svg {
        color: ${props => props.theme.main.colors.blue};
      }
    } 
  }
`;

const Li = styled.li`
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  min-height: 60px;
  margin-bottom: 14px;
  background: ${props => props.theme.main.colors.white};
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
  color: #333740;
  transition: all 0.15s ease;
  overflow: hidden;
  z-index: 10;
  padding: 1rem;
  border-left: 2px solid ${props => props.theme.main.colors.green};
  &.notificationError {
    border-color: ${props => props.theme.main.colors.red};
  }
  &.notificationWarning {
    border-color: ${props => props.theme.main.colors.orange};
  }
  &.notificationInfo {
    border-color: ${props => props.theme.main.colors.blue};
  }

  &:last-child {
    z-index: 1;
  }

  &:hover {
    cursor: pointer;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  }
`;

Li.defaultProps = {
  theme: {
    main: {
      colors: {
        leftMenu: {},
      },
      sizes: {
        header: {},
        leftMenu: {},
      },
    },
  },
};

Li.propTypes = {
  ...themePropTypes,
};

export default Li;

export { GlobalNotification };

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0054 ]--